mcp-toolkit-server
Provides web search functionality using DuckDuckGo, allowing users to search the web without requiring an API key.
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-toolkit-serverSearch the web for 'latest AI news' and read the first article."
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 Toolkit Server
A multi-purpose tool server based on the Model Context Protocol (MCP), providing file operations, database queries, web search, calculations, and other tools that can be integrated with MCP clients such as Claude Desktop, Cursor, Cline, and more.
โจ Features
๐ File Operation Tools
list_directory- List directory contentsread_file- Read text fileswrite_file- Write/append filesfile_info- Get file metadatasearch_files- Search files by wildcard
๐๏ธ Database Tools
query_database- Execute SQL SELECT queries (read-only safe)list_tables- List all tablesdescribe_table- View table structureinit_sample_database- Initialize a sample database
๐ Web Tools
web_search- DuckDuckGo web search (no API Key required)fetch_webpage- Fetch webpage main contentwebpage_info- Get webpage metadata
๐งฎ Calculation Tools
calculate- Safe mathematical expression evaluationconvert_unit- Unit conversion (length/weight/temperature/area/volume)date_calculation- Date calculations (difference/add/subtract)percentage_calculation- Percentage calculations
Related MCP server: Claude Code Control MCP
๐๏ธ Architecture Design
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MCP ๅฎขๆท็ซฏ (Claude/Cursor) โ
โโโโโโโโโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MCP Protocol (stdio / HTTP)
โโโโโโโโโโโโโโโโโโโโโโโโผโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ FastMCP Server ๆ ธๅฟ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโ โโโโโโโโโโโโ โ
โ โ ๆไปถๅทฅๅ
ท โ โ ๆฐๆฎๅบๅทฅๅ
ทโ โWebๅทฅๅ
ท โ โ ่ฎก็ฎๅทฅๅ
ท โ โ
โ โโโโโโโโโโโโ โโโโโโโโโโโโ โโโโโโโโโโ โโโโโโโโโโโโ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ๐ฆ Installation
# ๅ
้ไปๅบ
git clone <repo-url>
cd mcp-toolkit-server
# ๅๅปบ่ๆ็ฏๅข
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
# ๅฎ่ฃ
ไพ่ต
pip install -r requirements.txt
# ้
็ฝฎ็ฏๅขๅ้
cp .env.example .env๐ Usage
1. Run directly (stdio mode)
python server.py2. HTTP mode
python server.py --transport http --host 127.0.0.1 --port 80003. Integrate with Claude Desktop
Edit the Claude Desktop configuration file (claude_desktop_config.json):
{
"mcpServers": {
"toolkit": {
"command": "python",
"args": ["path/to/mcp-toolkit-server/server.py"],
"env": {
"ALLOWED_DIRS": "/path/to/your/workspace"
}
}
}
}4. Integrate with Cursor
In Cursor Settings โ MCP, add:
{
"mcpServers": {
"toolkit": {
"command": "python",
"args": ["path/to/mcp-toolkit-server/server.py"]
}
}
}๐ Project Structure
mcp-toolkit-server/
โโโ server.py # MCP ๆๅกๅจไธปๅ
ฅๅฃ
โโโ config.py # ้
็ฝฎ็ฎก็
โโโ requirements.txt # ไพ่ต
โโโ .env.example # ็ฏๅขๅ้ๆจกๆฟ
โโโ .gitignore
โโโ README.md
โโโ src/
โโโ __init__.py
โโโ tools/
โโโ __init__.py
โโโ file_tools.py # ๆไปถๆไฝๅทฅๅ
ท
โโโ db_tools.py # ๆฐๆฎๅบๆฅ่ฏขๅทฅๅ
ท
โโโ web_tools.py # Web ๆ็ดข/ๆๅๅทฅๅ
ท
โโโ calc_tools.py # ่ฎก็ฎ/่ฝฌๆขๅทฅๅ
ท๐ Security Mechanisms
Path Isolation: File operations are restricted to directories configured in
ALLOWED_DIRS, preventing path traversalSQL Read-Only: Database tools only allow SELECT queries, write operations are forbidden
Identifier Validation: Identifiers such as table names are validated via regex to prevent SQL injection
Expression Sandbox: Math calculations use a restricted eval environment that blocks access to built-in functions
๐ฏ Key Highlights
MCP Specification Compliant: Built on the official FastMCP framework, compatible with all MCP clients
Rich Tools: 4 categories with 17 tools, covering common development scenarios
Security First: Multiple layers of security mechanisms to prevent misuse
Easy to Extend: Modular design; adding a new tool only requires writing a function and registering it
Dual Transport Modes: Supports both stdio (local) and HTTP (remote) transport
๐ค Extension Directions
Add Git operation tools
Add code execution tools (sandboxed)
Add email sending tools
Add calendar management tools
Support fine-grained tool permission control
Add tool call audit logging
๐ 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.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceA Model Context Protocol implementation with a modular architecture that exposes capabilities through specialized agents, enabling seamless integration with Claude Desktop and web applications.2
- FlicenseNot gradedqualityDmaintenanceEnables programmatic execution of coding tasks and autonomous file operations using Claude AI. It allows agents to search codebases, run shell commands, and track file changes through the Model Context Protocol.
- AlicenseNot gradedqualityFmaintenanceEnables Claude AI to run terminal commands, perform file operations, and manage git in a project directory via the Model Context Protocol.38MIT
- FlicenseAqualityDmaintenanceEnables LLMs to interact with Python environments, execute code, manage files, and handle packages through the Model Context Protocol.9
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
Your portable context layer โ load it into any AI.
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/EadnyAIx/mcp-toolkit-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server