mrexodia/test-mcp
If you are the rightful owner of test-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
Test MCP is a model context protocol server designed to facilitate communication between clients and servers using the MCP framework.
Test MCP
Diagram: https://excalidraw.com/#json=uRRaOjlO8rV6Og36vjPEj,LRARtOLrhz0VdTFIxjH8Rg
Requirements
Note: OpenRouter has many free models available that you can use for testing.
Development
For testing you can run a development server and manually run tool calls:
uv run fastmcp dev
The fully example is implemented in test-mcp.py
, a minimal example you can use in your own projects is in minimal-mcp.py
.
Installation
To install your MCP server you need to configure an MCP.json
that looks something like this:
{
"mcpServers": {
"test-mcp": {
"command": "uv",
"args": [
"--directory",
"/Users/admin/Projects/test-mcp",
"run",
"test-mcp.py"
],
"timeout": 600
}
}
}
For Claude Desktop there is a detailed guide available.