Gcore official MCP server
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"gcore-mcp-server": {
"env": {
"GCORE_TOOLS": "instances,management,cloud.gpu_baremetal.clusters.*",
"GCORE_API_KEY": "4***1"
},
"args": [
"--from",
"gcore-mcp-server@git+https://github.com/G-Core/gcore-mcp-server.git",
"gcore-mcp-server"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP (Model Context Protocol) server for Gcore API. This server provides tools for interacting with Gcore Cloud API via LLM assistants.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in cloud
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
MCP Server for GCP environment for interacting with various Observability APIs.
MCP Server for kubernetes management commands
IAM Policy Autopilot is an open source static code analysis tool that helps you quickly create baseline AWS IAM policies that you can refine as your application evolves. This tool is available as a command-line utility and MCP server for use within AI coding assistants for quickly building IAM policies.
MCP Security Weekly
Get CVE alerts and security updates for Gcore Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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)