MCP Playground
MCP Playground is an interactive testing environment designed specifically for exploring and debugging MCP servers. It is not a general-purpose chat client — it is a developer tool that lets you connect to any MCP server, browse its capabilities, execute individual tool calls, and inspect the raw protocol messages going back and forth.
A Developer Workbench for MCP Servers
Where chat clients hide MCP behind a conversational interface, the Playground exposes every detail. You see the tool catalog with full JSON schemas, execute individual tools with custom parameters, view raw request/response payloads, and measure latency — all through a structured UI.
This is essential during MCP server development. Instead of starting a chat session and hoping the LLM decides to call your tool, you invoke it directly with specific inputs and inspect the output. When something goes wrong, the raw message viewer shows exactly what was sent and received.
What the Playground provides:
- Tool inspector — browse tools with full JSON schemas and descriptions
- Direct execution — call tools individually with custom parameters
- Request/response viewer — see raw MCP protocol messages
- Resource browser — navigate server-exposed resources
- Latency metrics — measure tool call response times
- No LLM needed — test MCP without an AI provider
Getting Started
1. Create a Token
In Vinkius Cloud, go to your server → Connection Tokens → Create. Copy the URL.
2. Connect in the Playground
Open MCP Playground and paste the URL in the connection panel:
https://edge.vinkius.com/{TOKEN}/mcpThe Playground connects and fetches the server's capability manifest.
3. Explore and Test
Browse the tool catalog. Click any tool to see its schema — then fill in parameters and execute. Results display inline with timing information.
FAQ
Is MCP Playground a chat client? No. It is a developer tool for testing and debugging MCP servers. It does not include an LLM — you interact with tools directly.
Can I test error cases? Yes. The Playground lets you send malformed inputs and see how the server responds, making it ideal for error-handling validation.
Does it support all MCP primitives? It supports tools, resources, and prompts. Sampling requires an LLM and is not available in the Playground.
Is MCP Playground free? Open-source. No account or API key needed — just a server URL.