GlobalCell eSIM for AI assistants
Connect your AI assistant to a GlobalCell store to find and buy eSIM packages, top up data and balance, and check your eSIMs, usage and orders. You sign in with your GlobalCell account on a GlobalCell page. Nothing is charged until you pay on the checkout page.
Pick your store
Use the store you bought your eSIM from. Each store has its own packages, prices and currency.
| Store | Currency | MCP server URL |
|---|---|---|
| GlobalCell Georgia globalcell.ge |
GEL | https://mcp.globalcell.world/mcp/globalcell.ge |
| GlobalCell Europe globalcell.eu |
EUR | https://mcp.globalcell.world/mcp/globalcell.eu |
| GlobalCell UK globalcell.uk |
GBP | https://mcp.globalcell.world/mcp/globalcell.uk |
| GlobalCell US globalcell.us |
USD | https://mcp.globalcell.world/mcp/globalcell.us |
| GlobalCell Mobi globalcell.mobi |
USD | https://mcp.globalcell.world/mcp/globalcell.mobi |
| GlobalCell IO globalcell.io |
USDt | https://mcp.globalcell.world/mcp/globalcell.io |
| GlobalCell Greece globalcell.gr |
EUR | https://mcp.globalcell.world/mcp/globalcell.gr |
Claude (claude.ai, Desktop, mobile)
Settings → Connectors → Add custom connector → paste the store URL → Connect, then sign in.
Claude Code
claude mcp add --transport http globalcell https://mcp.globalcell.world/mcp/globalcell.ge
ChatGPT
Settings → Apps & Connectors → Advanced → enable Developer mode, then Create → paste the store URL, authentication OAuth.
Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"globalcell": {
"url": "https://mcp.globalcell.world/mcp/globalcell.ge"
}
}
}
VS Code (GitHub Copilot)
.vscode/mcp.json
{
"servers": {
"globalcell": {
"type": "http",
"url": "https://mcp.globalcell.world/mcp/globalcell.ge"
}
}
}
Gemini CLI
~/.gemini/settings.json, then run /mcp auth globalcell
{
"mcpServers": {
"globalcell": {
"httpUrl": "https://mcp.globalcell.world/mcp/globalcell.ge"
}
}
}
Windsurf
{
"mcpServers": {
"globalcell": {
"serverUrl": "https://mcp.globalcell.world/mcp/globalcell.ge"
}
}
}
Clients that only support local (stdio) servers
{
"mcpServers": {
"globalcell": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.globalcell.world/mcp/globalcell.ge"
]
}
}
}