toolkit-mcp
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., "@toolkit-mcpvalidate JSON: {"key":1}"
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.
toolkit-mcp
MCP server for developer utilities. Clean architecture, extensible design.
Tools
Tool | Description |
| Validate and pretty-print JSON |
| Infer JSON Schema from example data |
| Encode or decode base64 |
| Convert unix timestamp to readable date |
| Hash a string (md5, sha1, sha256, sha512) |
Related MCP server: mcp-server-devutils
Architecture
server.py
├── ToolRegistry ← Reusable framework for tool registration
│ ├── tool() decorator ← Auto-generates JSON Schema from type hints
│ ├── list_tools() ← Full MCP tool listing
│ └── call_tool() ← Dispatch with error handling
├── Tools ← Utility implementations (self-contained)
└── Server ← MCP protocol binding (stdio / SSE)The ToolRegistry pattern separates tool definition from protocol transport. To add a new tool:
@registry.tool("my_tool", "Description of what it does")
def my_tool(param1: str, param2: int = 42) -> dict:
\"\"\"Docstring becomes tool description.\"\"\"
return {"result": param1 * param2}That's it. The schema is inferred from type hints automatically.
Setup
pip install "mcp[cli]"
python server.py # stdio mode (for Claude Desktop)
python server.py --transport sse # HTTP mode (for remote access)Requirements
Python 3.11+
MCP SDK (
mcp[cli])
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/pyofart/ticker-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server