MCP Tool 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 Tool Servercalculate 2*(3+4)"
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.
MCP Tool Server
A Model Context Protocol style tool server. It advertises a set of tools with JSON schemas so an AI agent can discover them, and executes tool calls safely. This is the pattern that lets agents act on real systems rather than only chatting.
Why it is useful for companies
Agents are only useful when they can do things: run a calculation, query a service, look something up. MCP standardizes how tools are exposed and called, so the same tools work across different agents and models. This server shows that pattern with a safe registry you extend with your own company tools.
Related MCP server: MCP Server Demo
What it does
Advertises tools with JSON-schema input definitions at
/toolsExecutes tool calls at
/call, with input validation and safe evaluationShips with three example tools: calculator, stats, knowledge_lookup
Quickstart
make install
make run # http://localhost:8080
curl -s localhost:8080/tools | python3 -m json.tool
curl -s -X POST localhost:8080/call -H "content-type: application/json" \
-d '{"name":"calculator","arguments":{"expression":"2*(3+4)"}}'Adding your own tool
Decorate a function in app/tools.py with @tool(name, description, schema). It is
then discoverable and callable immediately, no other wiring needed.
Stack
Python, FastAPI, JSON-schema tool registry, Docker, GitHub Actions CI, Pytest.
License
MIT
Workflow diagram
flowchart LR
A[AI agent] -->|GET /tools| S[MCP Tool Server]
S -->|tool schemas| A
A -->|POST /call name+args| S
S --> V[Validate + execute]
V --> R[Result back to agent]A runnable list-and-call sample is in examples/sample_output.json.
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/Krishna89287/mcp-tool-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server