ZuploZuplo
LoginSign Up
  • Documentation
  • API Reference
Introduction
Getting Started
    Develop using the Portal
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingMCP - Quick start
    Develop Locally
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth
Concepts
Development
Policies
Handlers
API Keys
MCP Server
    IntroductionToolsPromptsResourcesTestingGraphQLCustom ToolsOpenAI Apps SDK
    Guides
MCP Gateway
AI Gateway
Developer Portal
Monetization
Deploying & Source Control
Observability
Networking & Infrastructure
Account Management
Programming API
Build with AI
Zuplo CLI
Migration Guides
Platform LimitsSecuritySupportTrust & ComplianceChangelog
powered by Zudoku
MCP Server

MCP Server Testing

Testing Tools

Using MCP Inspector

The MCP Inspector is ideal for testing tools:

TerminalCode
npx @modelcontextprotocol/inspector
  1. Set Transport Type to "Streamable HTTP"
  2. Set URL to your MCP endpoint (for example, https://your-gateway.zuplo.dev/mcp)
  3. Connect and test your tools interactively

Using cURL

Test individual tools directly:

TerminalCode
# List available tools curl https://your-gateway.zuplo.dev/mcp \ -X POST \ -H 'Content-Type: application/json' \ -d '{ "jsonrpc": "2.0", "id": "0", "method": "tools/list" }' # Call a specific tool curl https://your-gateway.zuplo.dev/mcp \ -X POST \ -H 'Content-Type: application/json' \ -d '{ "jsonrpc": "2.0", "id": "1", "method": "tools/call", "params": { "name": "addNumbers", "arguments": { "a": 5, "b": 3 } } }'
Edit this page
Last modified on November 20, 2025
ResourcesGraphQL
On this page
  • Using MCP Inspector
  • Using cURL