Test and monitor MCP servers using the Model Context Protocol.
Endpoint: https://stackmcp-backend-346839503757.us-central1.run.app/mcp
Transport: Streamable HTTP
Auth: API key via Authorization: Bearer <key> — get one free at stackmcp.app
StackMCP is a deterministic test runner for MCP servers. This MCP server exposes StackMCP's core functionality as callable tools — so an agent can test another MCP server mid-workflow, without a human in the loop.
No LLM involved in the tests. Just JSON-RPC 2.0 protocol validation: tools/list, schema checks, minimal tool calls, error handling probes.
Run a one-time structural test against an MCP server.
Input:
{
"transport": "http",
"endpoint": "https://mcp.yourapp.com",
"apiKey": "optional-bearer-token",
"checkBlueprint": false
}Returns: Per-tool pass/fail report with schema validation results, error handling checks, detected transport, and a shareable result URL at stackmcp.app/results/{testId}.
Fetch a previously-run test result by ID.
Input:
{
"testId": "uuid-of-previous-test"
}Returns: Full test result document. Results are public — shareable without auth.
Set up a scheduled recurring test for an MCP endpoint. Alerts you by email when status changes. Requires Pro.
Input:
{
"name": "My MCP Server",
"endpoint": "https://mcp.yourapp.com",
"intervalMinutes": 15,
"alertEmail": "you@example.com",
"apiKey": "optional-bearer-token"
}List all monitors for your account. Requires Pro.
Input: {}
{
"mcpServers": {
"stackmcp": {
"type": "http",
"url": "https://stackmcp-backend-346839503757.us-central1.run.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}{
"mcpServers": {
"stackmcp": {
"url": "https://stackmcp-backend-346839503757.us-central1.run.app/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}run_testandget_result— free tier, 10 tests/month via MCPcreate_monitorandlist_monitors— Pro only- Get an API key at stackmcp.app/account
- Web app: stackmcp.app
- Blueprint: stackmcp.app/blueprint.txt
- Industry standard endpoint format:
https://mcp.yourapp.com