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 ServerWhat's the weather in Paris?"
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
Reference implementation of a Model Context Protocol (MCP) server for integrating external APIs as agent tools.
Built from MCP patterns used in production agentic platforms integrating weather, database, and enterprise system tools.
Features
MCP-compliant server with tool registration, discovery, and execution
Built-in tools: weather lookup, database query, web search, calculator
Tool schema validation with Pydantic models
Authentication: API key and OAuth2 support
Rate limiting per tool and per client
Execution logging for observability
Related MCP server: MCP Python Server — API Wrapper
Quick start
pip install -r requirements.txt
python src/server.py # Starts MCP server on port 8000Adding custom tools
from src.server import MCPServer, Tool
@Tool(name="lookup_inventory", description="Check inventory levels")
def lookup_inventory(product_id: str) -> dict:
return {"product_id": product_id, "quantity": 142, "warehouse": "Seattle-WH1"}
server = MCPServer()
server.register(lookup_inventory)
server.run()Tech stack
Python, FastAPI, Pydantic, httpx
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
- Alicense-qualityDmaintenanceA comprehensive Model Context Protocol server implementation that enables AI assistants to interact with file systems, databases, GitHub repositories, web resources, and system tools while maintaining security and control.532MIT
- Flicense-qualityDmaintenanceA Python server implementing the Model Context Protocol that exposes tools for querying external APIs, compatible with Claude Desktop and ChatGPT Desktop.
- Flicense-qualityDmaintenanceA Model Context Protocol (MCP) Server that provides unified access to multiple external APIs (weather, news, financial data) through a single, consistent interface for AI agents and LLMs.1
- AlicenseAqualityDmaintenanceA Model Context Protocol server that enables AI assistants to make HTTP requests (GET, POST, PUT, DELETE) to external APIs through standardized MCP tools.42MIT
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 exposing the Backtest360 engine API as tools for AI agents.
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/snigdhakakkar/mcp-tool-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server