Are you the author? Sign in to claim
Gcore official MCP server
MCP (Model Context Protocol) server for Gcore API. This server provides tools for interacting with Gcore Cloud API via LLM assistants.
Note: As we have multiple resources available, providing all of them at once to most LLM clients can overwhelm the model and lead to confusion among the tools. For most clients, it is recommended to specify only the necessary resources for your task to ensure optimal performance and clarity. Some clients, like Claude Code, handle this differently — see below.
Add the server to your Cursor IDE configuration file (~/.cursor/mcp.json):
{
"mcpServers": {
"gcore-mcp-server": {
"command": "uvx",
"args": ["--from", "gcore-mcp-server@git+https://github.com/G-Core/gcore-mcp-server.git", "gcore-mcp-server"],
"env": {
"GCORE_API_KEY": "4***1",
"GCORE_TOOLS": "instances,management,cloud.gpu_baremetal.clusters.*"
}
}
}
}
Add the server to your Claude Code configuration file (~/.claude.json):
{
"mcpServers": {
"gcore-mcp-server": {
"command": "uvx",
"args": ["--from", "gcore-mcp-server@git+https://github.com/G-Core/gcore-mcp-server.git", "gcore-mcp-server"],
"env": {
"GCORE_API_KEY": "4***1",
"GCORE_TOOLS": "*"
}
}
}
}
Setting GCORE_TOOLS=* loads all available tools, which works well with Claude Code thanks to its Tool Search feature. Unlike other clients, Claude Code defers tool schema loading — tool schemas are only fetched on demand when they match a query. This means registering many tools doesn't bloat the context window.
Claude Code shows a warning when tools exceed 10% of the context window. With deferred loading, this isn't an issue even with all tools enabled.
The uvx command runs the server in a temporary environment without requiring a persistent installation. See Running in a Temporary Environment for more details.
Note: You can find instructions on how to obtain a Gcore API Key here.
Optional variables:
GCORE_BASE_URL: "https://api.gcore.com",GCORE_CLOUD_PROJECT_ID: "1",GCORE_CLOUD_REGION_ID: "76",GCORE_CLIENT_ID: "2",The server uses a unified configuration approach via the GCORE_TOOLS environment variable. This single variable can contain a mix of predefined toolset names and custom patterns:
# Mixed toolsets and patterns
export GCORE_TOOLS="instances,management,cloud.gpu_baremetal.clusters.*,dns.records.create"
# Only toolsets
export GCORE_TOOLS="instances,management"
# Only patterns
export GCORE_TOOLS="cloud.*,waap.*"
# Default behavior (if not set)
# Uses "management,instances" toolsets for HTTP mode, "management" for stdio
Default Mode (no configuration)
management,instances toolsetsmanagement toolsetToolset Mode (predefined tool collections)
instances, management, ai_ml, etc.GCORE_TOOLS="instances,management"Pattern Mode (custom tool filtering)
cloud.instances.create, dns.records.deletecloud.*, waap.*, cloud.gpu_baremetal.clusters.*GCORE_TOOLS="cloud.instances.*,waap.*"Combined Mode (toolsets + patterns)
GCORE_TOOLS="instances,cloud.gpu_baremetal.clusters.*"The system includes several predefined toolsets for common workflows:
management: Core account and project managementinstances: Virtual machine operationsbaremetal: Bare metal server operationsgpu_baremetal: GPU bare metal cluster managementgpu_virtual: GPU virtual cluster managementnetworking: Networks, Floating IPs, Load Balancerssecurity: Security Groups, SSH Keys, Secretsstorage: Volumes, File Sharesai: AI Clustersai_ml: AI/ML inference servicesbilling: Cost reports and billing informationcontainers: Container registriescleanup: Deletion and cleanup operationslist: List/read-only operationsPatterns support wildcard matching using *:
cloud.instances.create matches only that specific methodcloud.instances.* matches all instance methodscloud.* matches all cloud service methodswaap.* matches all WAAP methodsWhen using combined mode:
# Development: Get specific tools for testing
export GCORE_TOOLS="cloud.instances.create,cloud.instances.delete,cloud.volumes.create"
# Full cloud management
export GCORE_TOOLS="management,instances,storage,networking"
# GPU cluster operations with custom additions
export GCORE_TOOLS="gpu_baremetal,cloud.instances.create,waap.*"
# All services with wildcard
export GCORE_TOOLS="cloud.*,waap.*"
# Minimal setup
export GCORE_TOOLS="instances"
If you want to run the server without installing it persistently (e.g., for a quick test or a single use), you can use uvx. This command fetches the package, runs the specified script in a temporary environment, and then discards the environment.
To run the latest version from the main branch:
uvx --from "gcore-mcp-server@git+https://github.com/G-Core/gcore-mcp-server.git" gcore-mcp-server
To run a specific version (e.g., v0.1.1):
uvx --from "gcore-mcp-server@git+https://github.com/G-Core/gcore-mcp-server.git@v0.1.1" gcore-mcp-server
Remember to set any required environment variables (like GCORE_API_KEY, GCORE_TOOLS, etc.) before running the command.
For detailed installation instructions for uv, please refer to the official uv installation guide.
You can install gcore-mcp-server as a command-line tool using uv. This makes the command available globally in your terminal without needing to specify the source each time.
To install the latest version from the main branch:
uv tool install "gcore-mcp-server@git+https://github.com/G-Core/gcore-mcp-server.git"
To install a specific version (e.g., v0.1.0):
uv tool install "gcore-mcp-server@git+https://github.com/G-Core/gcore-mcp-server.git@v0.1.0"
After installation, uv will make the gcore-mcp-server command available. If it's not immediately found, you might need to run uv tool update-shell or ensure uv's tool bin directory is in your PATH.
Once installed, you can run it like any other command:
gcore-mcp-server
# Clone the repository
git clone https://github.com//G-Core/gcore-mcp-server.git
cd gcore-mcp-server
# Install development dependencies
uv venv
source .venv/bin/activate
uv sync --dev
For debugging and development, it's recommended to use the MCP Inspector:
npx @modelcontextprotocol/inspector
The MCP Inspector provides a web interface to test and debug your MCP server interactively, allowing you to:
To use it with your local development server:
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official GitHub integration for repos, issues, PRs, and CI/CD workflows