MCP Inspector provides a web interface for exploring and testing MCP server tools without an AI client. The interface displays available tools with their parameters and allows manual execution to verify behavior before integrating with Claude Code or other clients.Documentation Index
Fetch the complete documentation index at: https://gcore.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Start MCP Inspector
MCP Inspector runs via npx and requires Node.js 18 or later. Verify the installation withnode --version, then start the inspector:
http://localhost:6274 and opens a browser window automatically.
If the Inspector shows a blank white page after starting, the browser has cached a different version of the UI. Open the Inspector in a private/incognito window or press
Ctrl+Shift+R to force a cache reload.Connect to Gcore MCP Server
MCP Inspector supports two connection methods: stdio transport through the UI configuration, and HTTP transport for debugging scenarios where server logs need monitoring.Stdio transport
The stdio method launches the server directly from the Inspector interface.-
Set Transport Type to
STDIO. - Enter the command:
- Enter the arguments:
- Expand Environment Variables and add:
| Variable | Value |
|---|---|
GCORE_API_KEY | API token |
GCORE_TOOLS | cdn.* (or other filter pattern) |
- Click Connect.
McpError: MCP error -32001: Request timed out appears when the Inspector UI cannot reach its proxy process on port 6277. This is a known issue with MCP Inspector v0.21+ on Windows where the proxy process fails to start. Use the HTTP transport method instead — instructions below.
HTTP transport
HTTP mode allows monitoring server logs in a separate terminal.- Start the server with HTTP transport:
-
In the Inspector, set Transport Type to
SSE. - Enter the URL:
- Click Connect.
Explore available tools
After connecting, the Inspector displays three tabs: Tools (available MCP tools), Resources (MCP resources if configured), and Prompts (MCP prompts if configured). Selecting a tool reveals its description, input schema with required and optional parameters, and a test interface for manual execution.
GCORE_TOOLS filter. Setting GCORE_TOOLS="cdn.*" shows CDN-related tools, while GCORE_TOOLS="cloud.instances.*" displays Cloud instance tools. Multiple products can be combined with GCORE_TOOLS="cdn.*,dns.*".
Execute tools manually
Tool execution requires selecting a tool from the list, filling parameter values according to the input schema, and clicking Run Tool. The Results panel displays the JSON response from the server. Listing DNS zones demonstrates a parameterless call: connect withGCORE_TOOLS="dns.*", select dns_zones_ls from the tools list, and click Run Tool without entering any parameters. The response contains an array of DNS zone objects with their names, status, and record counts.

dns_zones_get, enter the zone name in the parameter field, and click Run Tool. The response contains the zone configuration including records, TTL settings, and status.
Understand tool schemas
Tool schemas define the expected input format and appear in the Input Schema section when selecting a tool. Each field includes its data type (string, number, object, or array), whether it is required, a description of its purpose, and default values if applicable. Expanding nested objects reveals all available configuration options. Schema exploration helps understand exact parameter names and formats before constructing requests in Claude Code or other clients.Debug execution errors
The Inspector displays the full JSON-RPC request sent to the server, the response with results or errors, and execution timing. The server log panel shows all HTTP requests made to the Gcore API, including the endpoint called and the response status code.
Practical applications
MCP Inspector serves as a reference tool when documenting or integrating Gcore MCP Server. Exploring tools reveals exact names, parameter requirements, types, and response structures. Testing filter patterns confirms thatGCORE_TOOLS values match the intended tool set before configuring production clients. When Claude Code reports errors, replicating the tool call in the Inspector reveals the exact request and full error response for debugging.