MCP Tool Kit
Agentic abstraction layer for building high precision vertical AI agents written in python for Model Context Protocol.
Overview
MCP Tool Kit is a modular server implementation for Claude AI assistants, enabling them to perform various actions and access external resources through a unified interface.
To use MCP Tool Kit, you can install it via pip or run it using Docker. After installation, you can start the server and connect it with the Claude desktop application to enhance its capabilities.
- Modular architecture for easy integration of tools - Supports file system operations, web searches, and browser automation - Integration with financial and e-commerce platforms like QuickBooks and Shopify - Tools for data analysis, presentation creation, and sequential thinking
- Automating market research by gathering and analyzing data.
- Creating and managing presentations for business reports.
- Performing financial operations and generating invoices through QuickBooks.
- Conducting web searches and retrieving news articles.
Add to your AI client
Use these steps to connect MCP Tool Kit in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-tool-kit-getfounded": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tool-kit-getfounded"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-tool-kit-getfounded": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tool-kit-getfounded"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-tool-kit-getfounded": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tool-kit-getfounded"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-tool-kit-getfounded": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tool-kit-getfounded"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-tool-kit-getfounded": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tool-kit-getfounded"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-tool-kit-getfounded": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-tool-kit-getfounded"
]
}
}
}FAQ
Is MCP Tool Kit free to use?
Yes! MCP Tool Kit is open-source and free to use.
Can I run MCP Tool Kit without Docker?
Yes! You can install it via pip and run it directly on your machine.
What programming language is MCP Tool Kit written in?
MCP Tool Kit is written in Python.