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.
Related MCP Servers
- AlicenseBqualityDmaintenanceA Model Context Protocol server that allows secure execution of pre-approved commands, enabling AI assistants to safely interact with the user's system.Last updated1422ISC
- Flicense-qualityDmaintenanceA demonstration implementation of the Model Context Protocol server that facilitates communication between AI models and external tools while maintaining context awareness.Last updated
- Alicense-qualityDmaintenanceA server that implements the Model Context Protocol, providing a standardized way to connect AI models to different data sources and tools.Last updated3311MIT
- Flicense-qualityDmaintenanceA Model Context Protocol server that extends AI capabilities through tools for remote control, note-taking, email operations, and knowledge search.Last updated
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol server for Wix AI tools
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
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/Krishna89287/mcp-tool-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server