Skip to content

Search is only available in production builds. Try building and previewing the site to test it out locally.

Connect Your Client

Add the MCP Client Tester server to your LLM client in minutes. This public server helps you test and debug MCP protocol implementations.

Public Server Endpoint

https://api.mcp-tester.l.supported.systems/mcp

This endpoint supports Streamable HTTP transport (JSON-RPC over HTTPS).

Quick Setup by Client

Claude.ai Web Client Setup

Claude.ai (the web interface at claude.ai) supports MCP integrations for Pro, Team, and Enterprise users.

Setup Steps:

  1. Go to claude.ai and sign in
  2. Click your profile iconSettings
  3. Navigate to Integrations or MCP Servers
  4. Click Add Integration or Add MCP Server
  5. Enter:
    • Name: MCP Client Tester
    • URL: https://api.mcp-tester.l.supported.systems/mcp
  6. Click Save or Connect

Once connected, you can ask Claude to use the MCP tools:

Use the ping tool from MCP Client Tester with message "hello"

Available Tools

Once connected, you’ll have access to these testing tools:

ToolDescription
pingBasic connectivity test - returns pong with timestamp
echoEcho back any input you send
tell_us_about_yourselfClient self-reporting for capability testing
test_progressTest progress notification handling
test_cancellationTest operation cancellation support
test_errorTest error handling with various error types
get_server_capabilitiesDiscover server features and configuration

Testing Your Connection

After adding the server, verify the connection works:

  1. Check Server Status

    Use the ping tool to verify connectivity:

    Use the ping tool with message "hello"
  2. Explore Available Tools

    Ask your client to list available tools or use get_server_capabilities

  3. Test Protocol Features

    Try test_progress to see how your client handles progress notifications

  4. Test Error Handling

    Use test_error with different error types to verify error handling

Troubleshooting

Connection Issues

“Connection refused” or timeout:

  • Verify the URL is correct: https://api.mcp-tester.l.supported.systems/mcp
  • Check your network allows HTTPS connections
  • Try the cURL test above to isolate client vs. network issues

“Transport not supported”:

  • Ensure your client supports HTTP/HTTPS transport
  • Some clients (older Claude Desktop) only support STDIO
  • Use mcp-remote bridge for STDIO-only clients

JSON-RPC errors:

  • Check that your client sends proper JSON-RPC 2.0 format
  • Ensure Content-Type header is application/json
  • Verify the method name and parameters match the schema

Getting Help

  • View Logs: Check the Monitor page for real-time protocol logs
  • API Docs: Visit https://api.mcp-tester.l.supported.systems/docs for OpenAPI documentation
  • Dashboard: Use the Dashboard to see session statistics

Ready to dive deeper? Check out the Protocol Overview to understand the MCP message format, or explore Testing Strategies for comprehensive testing.