OpenAI’s Stargate Project Aims to Build AI Infrastructure in Partner Countries Worldwide

MMS Founder
MMS Vinod Goje

OpenAI has announced a new initiative called “OpenAI for Countries” as part of its Stargate project, aiming to help nations develop AI infrastructure based on democratic principles. This expansion follows the company’s initial $500 billion investment plan for AI infrastructure in the United States.

“Introducing OpenAI for Countries, a new initiative to support countries around the world that want to build on democratic AI rails,” OpenAI stated in its announcement. The company reports that its Stargate project, first revealed in January with President Trump and partners Oracle and SoftBank, has begun construction of its first supercomputing campus in Abilene, Texas.

According to OpenAI, the initiative responds to international interest in similar infrastructure development. “We’ve heard from many countries asking for help in building out similar AI infrastructure—that they want their own Stargates and similar projects,” the company explained, noting that such infrastructure will be “the backbone of future economic growth and national development.”

The company emphasized its vision of democratic AI as technology that incorporates principles protecting individual freedoms and preventing government control concentration. OpenAI believes this approach “contributes to broad distribution of the benefits of AI, discourages the concentration of power, and helps advance our mission.”

The Stargate project operates through a consortium of major technology companies serving as both investors and technical partners. SoftBank, OpenAI, Oracle, and MGX provide the initial equity funding, with SoftBank handling financial responsibilities while OpenAI manages operations.

On the technical side, five major technology companies form the foundation of the project’s implementation. “Arm, Microsoft, NVIDIA, Oracle, and OpenAI are the key initial technology partners,” according to OpenAI. The infrastructure development leverages established relationships between these companies, particularly building upon OpenAI’s long-standing collaboration with NVIDIA that dates back to 2016 and its more recent partnership with Oracle.

The company outlines a comprehensive partnership framework for collaborating with foreign nations.

“OpenAI is offering a new kind of partnership for the Intelligence Age. Through formalized infrastructure collaborations, and in coordination with the US government,” the announcement explains, highlighting the company’s alignment with American foreign policy interests in technology development.

The partnership model includes multiple components addressing infrastructure, access, and economic development. OpenAI plans to “Partner with countries to help build in-country data center capacity” to support data sovereignty while enabling AI customization for local needs.

Citizens of participating countries would receive “customized ChatGPT” services tailored to local languages and cultures, aimed at improving healthcare, education, and public services delivery. OpenAI describes this as “AI of, by, and for the needs of each particular country.”

The company also emphasizes security investments and economic development through a startup funding approach where “Partner countries also would invest in expanding the global Stargate Project—and thus in continued US-led AI leadership,” reinforcing the initiative’s connection to American technological leadership.

OpenAI’s international partnerships incorporate extensive security protocols designed to protect AI models and intellectual property. The company has developed a security approach to address potential vulnerabilities.

“Safeguarding our models is a continuous commitment and a core pillar of our security posture,” OpenAI states, describing their security framework as “rigorous” and “continuously evolving.” This framework encompasses information security, governance, and physical infrastructure protection.

The security architecture adapts to match model capabilities, with OpenAI noting that “Our security measures are not static; they scale with the capabilities of our models and incorporate state-of-the-art protections.” These protections include hardware-backed security, zero-trust architecture, and cryptographic safeguards.

Personnel access represents another critical security dimension. “OpenAI will maintain explicit and continuous oversight over all personnel with access to our information systems, intellectual property, and models,” the company emphasizes, adding that “No individual or entity will gain such access without our direct approval.”

Before deploying models internationally, OpenAI conducts risk assessments through its Preparedness Framework. “Each deployment of new models will undergo risk evaluation prior to deployment,” acknowledging that some advanced models may present risks incompatible with certain environments.

OpenAI CEO Sam Altman expressed enthusiasm about the progress at the Texas site, tweeting:

Great to see progress on the first stargate in Abilene with our partners at Oracle today. Will be the biggest ai training facility in the world. The scale, speed, and skill of the people building this is awesome.

However, the massive infrastructure development has raised environmental concerns. Greg Osuri, founder of Akash Network, questioned the project’s sustainability approach:

This data center is generating 360 MW by burning natural gas, causing heavy pollution and emitting up to 1 million metric tons of carbon every year. I understand the choices are limited but would like to understand your future plans to switch to more cleaner or sustainable sources.

Zach DeWitt, partner at Wing VC, commented on the broader implications of this move:

OpenAI seems to be building and selling products at every layer of the AI stack: chips, data centers, APIs and the application layer. It’s unclear which layer(s) will and won’t be commoditized and OpenAI is hedging their bets up and down the AI stack. Very smart.

The company has specified geographic limitations for its international expansion strategy, maintaining restrictions on which nations can access its technology through its “Supported countries and territories” documentation.

About the Author

Subscribe for MMS Newsletter

By signing up, you will receive updates about our latest information.

  • This field is for validation purposes and should be left unchanged.

PayPal’s New Agent Toolkit Connects AI Frameworks with Payment APIs Through MCP

MMS Founder
MMS Vinod Goje

PayPal has released its Agent Toolkit, designed to help developers integrate PayPal’s API suite with AI frameworks through the Model Context Protocol (MCP). The toolkit provides access to APIs for payments, invoices, disputes, shipment tracking, catalog management, subscriptions, and analytics capabilities.

The company is adopting MCP, a standard proposed by Anthropic that aims to standardize how agents access third-party services and data sources. PayPal’s official MCP server is now available for developers, offering remote MCP servers with authentication integration in the cloud environment. The technology will support users working across multiple devices with simplified login procedures.

The PayPal Agent Toolkit provides developers with a streamlined way to incorporate PayPal’s commerce capabilities into AI agent workflows. This library serves as an intermediary between PayPal’s API ecosystem and modern AI frameworks, enabling AI agents to handle tasks like order management, invoice generation, and subscription control without requiring developers to implement complex API integrations manually.

The toolkit offers several important capabilities, including “Easy integration with PayPal services, including functions that correspond to common actions within the payments, invoices, disputes, shipment tracking, catalog, subscriptions, reporting and insights APIs, eliminating the need to delve deep into each API endpoint.” Currently supporting TypeScript with Python support planned for future release, the toolkit works with leading AI frameworks such as Model Context Protocol servers and Vercel’s AI SDK.

The PayPal Agent Toolkit opens new avenues for businesses to integrate AI-powered workflows with financial operations. By connecting AI frameworks directly to PayPal services, developers can create specialized agents that handle various commerce-related tasks.

For Order Management and Shipment tracking, businesses can implement AI agents that create orders from conversational interactions, process payments with proper authentication, and provide shipment updates. A customer service agent could use the toolkit to complete transactions when customers confirm purchases through chat interfaces.

The toolkit also supports Intelligent Invoice Handling, allowing AI assistants to generate and manage invoices based on service completions. These agents can use natural language instructions to define invoice parameters, send them to clients via email, and monitor payment status.

With Streamlined Subscription Management capabilities, businesses can develop agents that handle the entire subscription lifecycle. This includes creating products, setting up subscription plans, and processing recurring payments through PayPal’s payment system. As described in the documentation, “a membership agent could use the toolkit to set up a recurring PayPal payment when a new user signs up for a service and approves the payment.”

The PayPal Agent Toolkit implementation requires minimal setup, as demonstrated in the code examples. Developers first initialize the PayPal workflows by importing the necessary components and configuring client credentials:

import { PayPalWorkflows, ALL_TOOLS_ENABLED } from '@paypal/agent-toolkit/ai-sdk';

const paypalWorkflows = new PayPalWorkflows({

clientId: process.env.PAYPAL_CLIENT_ID,

clientSecret: process.env.PAYPAL_CLIENT_SECRET,

configuration: {

actions: ALL_TOOLS_ENABLED,

},

});

Once configured, the toolkit can be used with any compatible language model through a simple API call structure. The code shows how developers can integrate PayPal’s functionality with an AI model:

const llm: LanguageModelV1 = getModel(); // The model to be used with ai-sdk

const { text: response } = await generateText({

model: llm,

tools: paypalToolkit.getTools(),

maxSteps: 10,

prompt: `Create an order for $50 for custom handcrafted item and get the payment link.`,

});

This integration allows AI models to execute PayPal operations through natural language instructions, such as creating orders and generating payment links, without requiring developers to write extensive custom code for API integrations.

David Paluy, CTO at Suppli, raised important questions about identity and authentication in agentic commerce:

Financial systems rely on identifying who is making a transaction. An AI agent has no legal identity of its own – it operates under a user’s or organization’s identity.

Paluy suggested that the industry may need to extend the concept of Know-Your-Customer to “Know-Your-Agent” – verifying an agent’s identity and authorization as an intermediary acting for a user.

Abdul Abdirahman, a principal at F-Prime, highlighted existing challenges in API infrastructure:

Today’s APIs are designed for human developers to engage with and thus not optimized for the agentic world. Many modifications are needed to enable agents to execute complex tasks efficiently.

The announcement also triggered reactions on social media. Kenneth Auchenberg, Partner at AlleyCorp, expressed surprise at PayPal’s position in the market, stating:

Wait, Paypal shipped a remote MCP server, before Stripe?

Developers interested in exploring the PayPal Agent Toolkit can access the official repository at https://github.com/paypal/agent-toolkit/ for documentation, examples, and implementation guides. The repository contains detailed information on getting started with the toolkit, supported features, and best practices for integrating PayPal’s payment capabilities into AI agent workflows.

About the Author

Subscribe for MMS Newsletter

By signing up, you will receive updates about our latest information.

  • This field is for validation purposes and should be left unchanged.