Hosted endpoint
Cyberwave provides a hosted MCP server so teams can connect agents without running local infrastructure.- Endpoint:
https://mcp.cyberwave.com/mcp - Transport:
streamable-http - Protocol: JSON-RPC 2.0 over MCP
At the moment, the hosted endpoint does not require client-side auth headers. If your organization needs stricter access control, self-host the MCP server behind your own auth layer.
Quick setup
Cursor
Create.cursor/mcp.json in your project:
Claude API (remote MCP connector)
OpenAI Agents SDK (Python)
Best practices for hosted MCP clients
These practices are aligned with the MCP transport specification and major hosted-MCP client docs:- Use Streamable HTTP endpoints for hosted/serverless deployments.
- If you are building a custom client, send both accepted response types in
Accept:application/jsontext/event-stream
- Use retries with exponential backoff for transient
5xxand network errors. - Apply sensible tool call timeouts and surface structured errors to users.
- Prefer inspect-first workflows for Cyberwave:
- list/get resources first
- run action tools with
execute=falsebeforeexecute=true
- Track observability signals:
- tool name
- duration
- status/error code
- endpoint latency (p95/p99)
Validation and benchmark resources
- MCP Inspector for manual interoperability testing and tool/resource validation.
- MCP-Bench for evaluating agent tool-use quality across MCP servers.
- Cloud Run metrics / your APM for request rate, latency, error rate, and saturation in production.
References
- MCP specification (transports): https://modelcontextprotocol.io/specification/2025-03-26/basic/transports
- MCP Inspector: https://modelcontextprotocol.io/docs/tools/inspector
- Cursor MCP integrations: https://cursor.com/help/customization/mcp
- Anthropic remote MCP servers: https://docs.anthropic.com/en/docs/agents-and-tools/remote-mcp-servers
- OpenAI Agents SDK MCP docs: https://openai.github.io/openai-agents-python/mcp/
- Google Cloud: Host MCP servers on Cloud Run: https://docs.cloud.google.com/run/docs/host-mcp-servers
- MCP-Bench: https://github.com/Accenture/mcp-bench