A comprehensive toolkit for the Model Context Protocol (MCP) with automatic tool discovery and multiple transport options.
π Official Documentation | π Website | π¬ Community
π Built by UsefulAI | π From GitHub to Commercial Success
Choose your platform and run ONE command:
irm https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.ps1 | iex
bash <(curl -s https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.sh)
bash <(wget -qO- https://raw.githubusercontent.com/getfounded/mcp-tool-kit/main/install.sh)
That's it! The installer will:
- β Download MCP Tool Kit (no Git needed!)
- β Check for Docker (helps install if missing)
- β Create desktop shortcuts
- β Set up everything automatically
Manual Download
-
Download the latest release:
-
Extract and run:
- Windows: Run
install.bat
- Mac/Linux: Run
./install.sh
- Windows: Run
Git Installation (for developers)
-
Clone the repository
git clone https://github.com/getfounded/mcp-tool-kit.git cd mcp-tool-kit
-
Run the launcher
- Windows: Double-click
launch.bat
- Mac/Linux: Run
./launch.sh
- Windows: Double-click
Docker-Only Installation
docker run -it --name mcp-toolkit ghcr.io/getfounded/mcp-tool-kit:latest
Tools are automatically discovered and registered at runtime - no manual configuration needed!
- stdio: For Claude Desktop integration
- SSE (Server-Sent Events): For web-based access
- π File System: Read, write, and manage files
- π Time Tools: Timezone conversions and time operations
- π Web Search: Brave Search integration
- π€ Browser Automation: Playwright-based browser control
- π Data Analysis: Yahoo Finance, FRED, World Bank data
- π Document Tools: PDF, Excel, PowerPoint manipulation
- π― And many more!
Control everything through a simple config.yaml
file:
enabled_tools:
filesystem: true
time_tools: true
brave_search: true
# ... more tools
tool_config:
filesystem:
allowed_directories: ["~/Documents", "~/Downloads"]
brave_search:
max_results: 10
- Copy
.env.template
to.env
- Add your API keys:
BRAVE_SEARCH_API_KEY=your_key_here NEWS_API_KEY=your_key_here FRED_API_KEY=your_key_here # ... other keys
MCP Tool Kit uses a dedicated storage directory for file operations:
- Windows:
C:\Users\{Username}\mcp-tool-kit-storage
- Mac/Linux:
~/mcp-tool-kit-storage
The storage directory is automatically created when you first run the Docker container. You can also manually set it up:
Windows (PowerShell):
.\scripts\setup-storage.ps1
Mac/Linux:
./scripts/setup-storage.sh
mcp-tool-kit-storage/
βββ documents/ # For document files
βββ downloads/ # For downloaded files
βββ workspace/ # For temporary work files
All file operations through the filesystem tool will be restricted to this directory for security.
- Start the server in stdio mode using the launcher
- Add to Claude Desktop configuration:
{ "mcpServers": { "mcp-tool-kit": { "command": "docker", "args": ["exec", "-i", "mcp-server", "python", "mcp_server_v2.py"] } } }
- Start the server in SSE mode using the launcher
- Access the server at
http://localhost:8080
- Use the SSE endpoints:
/sse
- Server-Sent Events stream/messages
- Send messages to the server
Tools now use a standardized base class system:
from app.tools.base_tool import BaseTool
class MyCustomTool(BaseTool):
def get_name(self) -> str:
return "My Custom Tool"
def get_tools(self) -> Dict[str, Callable]:
return {
"my_function": self.my_function
}
async def my_function(self, param: str, ctx: Context = None) -> str:
return f"Processed: {param}"
See the developer documentation for detailed guides.
Full documentation is available at https://docs.mcp-tool-kit.com.
To run documentation locally:
cd docs
npm install
npm start
The launcher scripts handle all Docker operations automatically.
# Start server
docker-compose up -d
# View logs
docker-compose logs -f
# Stop server
docker-compose down
# Rebuild after changes
docker-compose build --no-cache
- Fork the repository
- Create your feature branch
- Add your tool to
app/tools/
- Submit a pull request
This project is licensed under the MIT License - see the LICENSE file for details.
- GitHub Issues
- Documentation
- Discord Community (coming soon)