mcpcloud-cli
v1.1.0
Published
MCP Cloud Gateway Client - Connect your AI tools to MCP Cloud
Downloads
18
Maintainers
Readme
MCP Cloud CLI
Connect your AI tools (Claude Desktop, Cline, Cursor, etc.) to MCP Cloud.
Installation
npx @mcp-cloud/cli <your-api-key>Configuration
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"mcp-cloud": {
"command": "npx",
"args": ["-y", "@mcp-cloud/cli", "YOUR_API_KEY_HERE"]
}
}
}Cline (VS Code)
Add to your cline_mcp_settings.json:
{
"mcpServers": {
"mcp-cloud": {
"command": "npx",
"args": ["-y", "@mcp-cloud/cli", "YOUR_API_KEY_HERE"]
}
}
}Using Environment Variables
You can also use environment variables instead of passing the API key as an argument:
{
"mcpServers": {
"mcp-cloud": {
"command": "npx",
"args": ["-y", "@mcp-cloud/cli"],
"env": {
"MCP_CLOUD_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}Getting Your API Key
- Go to mcpcloud.vercel.app
- Sign up or log in
- Go to Settings → API Keys
- Create a new API key
How It Works
The CLI creates a local MCP server that:
- Connects to MCP Cloud's remote gateway
- Fetches your configured MCP servers and their tools
- Exposes them locally via stdio protocol
- Compatible with any MCP-enabled AI tool
License
MIT
