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 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
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
The Remote MCP server acts as a standardized bridge between LLM applications (like Claude, ChatGPT, and Cursor) and external services, enabling AI agents to access external tools and resources. Its primary capability is providing a centralized search tool to discover other MCP servers and their respective tools. Unlike local implementations, it runs remotely with OAuth authentication and permission controls for security.
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.1822ISC
- FlicenseNot gradedqualityDmaintenanceA demonstration implementation of the Model Context Protocol server that facilitates communication between AI models and external tools while maintaining context awareness.
- AlicenseNot gradedqualityDmaintenanceA server that implements the Model Context Protocol, providing a standardized way to connect AI models to different data sources and tools.1511MIT
- AlicenseAqualityDmaintenanceA Model Context Protocol server providing tools for DB queries, API calls, file I/O, and text transformations, enabling AI agents like Claude to perform real-world actions.10MIT
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