MCP Connection Test Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Connection Test Serverrun the connection test"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Cloud MCP Server Connection Test Tool
This is a cloud MCP Server that uses only Streamable HTTP. The public endpoint is:
https://你的域名/mcpThe upstream can discover and call mcp_connection_test, which after being called always returns
MCP连接成功. The tool does not call a model and does not require an API Key.
Deployment Structure
上游 MCP 客户端 -> HTTPS 443 -> Caddy -> MCP Server 8000Caddy automatically applies for and renews HTTPS certificates, and the MCP Server's port 8000 is not directly exposed to the public.
Related MCP server: MCP MCPO Demo Server
1. Prepare the Server and Domain
Install Docker Engine and the Docker Compose plugin on the cloud server.
Prepare a domain, e.g.
mcp.example.com.Add an A record for the domain, pointing to the cloud server's public IP.
Allow TCP 80 and 443 in the cloud provider's security group and the server firewall.
For MCP_DOMAIN, fill in only the domain; do not include https:// or a path.
2. Upload the Project
Execute on a local Mac, replacing SERVER_USER and SERVER_IP with real values. This explicitly excludes
the local .env and virtual environment, so that old API Keys or unrelated files are not uploaded to the server:
rsync -av \
--exclude='.env' \
--exclude='.venv' \
--exclude='__pycache__' \
"/Users/clarence/Desktop/项目/兴先达/MCP测试/" \
SERVER_USER@SERVER_IP:~/mcp-connection-test/Log in to the server:
ssh SERVER_USER@SERVER_IP
cd ~/mcp-connection-test3. Fill in the Domain and Start
cp deploy.env.example deploy.envEdit deploy.env:
MCP_DOMAIN=mcp.example.comBuild and start in the background:
docker compose --env-file deploy.env up -d --buildView the running status and logs:
docker compose --env-file deploy.env ps
docker compose --env-file deploy.env logs --tail=100After the certificate has been issued, the MCP address is:
https://mcp.example.com/mcp4. Verify Tool Discovery and Invocation
Execute on a local Mac to verify the public network link:
/opt/homebrew/Caskroom/miniconda/base/bin/python \
"/Users/clarence/Desktop/项目/兴先达/MCP测试/verify_remote.py" \
https://mcp.example.com/mcpOn success, it will show:
发现工具:mcp_connection_test
调用返回:MCP连接成功This step actually executes MCP initialization, tools/list, and tools/call, which is more accurate than ordinary port or HTTP checks.
5. Upstream Configuration
Configure the upstream MCP client's server URL as:
https://mcp.example.com/mcpTool name:
mcp_connection_testThe invocation parameters can be an empty object:
{}You can also pass probing content:
{
"probe": "upstream-health-check"
}Updating and Stopping
After updating the code, redeploy:
docker compose --env-file deploy.env up -d --buildStop the service:
docker compose --env-file deploy.env downFAQ
Returns
421 Invalid Host header: The domain indeploy.envdoes not match the domain you are accessing.HTTPS certificate not issued: Check the domain's A record and the security group's ports 80 and 443.
View MCP service logs:
docker compose --env-file deploy.env logs mcp-server.View HTTPS proxy logs:
docker compose --env-file deploy.env logs caddy.
The current service has no authentication, because it only has a side-effect-free connection test tool. If real business tools are added later, you should add MCP authentication, or in the cloud security group only allow the upstream's fixed IP to access.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBqualityNot gradedmaintenanceA minimal reference implementation of an MCP server that responds with "Hello, World" via Streamable HTTP. Serves as a baseline for integration testing and MCP client development with production-ready features including health checks, metrics, and containerized deployment.320,480
- AlicenseNot gradedqualityDmaintenanceA demonstration MCP server that provides basic utility tools including hello world functionality and string reversal operations. Shows how to build and deploy MCP tools using the MCPO orchestrator framework.GPL 3.0
- FlicenseNot gradedqualityDmaintenanceA simple demonstration MCP server that provides an echo tool and resource for learning how to build MCP servers. Serves as a starting point and template for creating custom MCP server implementations.
- FlicenseNot gradedqualityBmaintenanceA simple HTTP server to validate MCP infrastructure for the Wazza MCP client, exposing endpoints for tool discovery and calling.
Related MCP Connectors
An authenticated remote MCP server for user-owned devices and one-shot capability invocation.
A paid remote MCP for CLI tool MCP, built to return verdicts, receipts, usage logs, and audit-ready
A paid remote MCP for hosted MCP server, built to return verdicts, receipts, usage logs, and audit-r
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/clarencez1011/mcpservertest'
If you have feedback or need assistance with the MCP directory API, please join our Discord server