MCP Toolbox is a comprehensive toolkit that extends the capabilities of Large Language Models (LLMs) through the Model Context Protocol (MCP). It enables LLMs to interact with external services and APIs including command line execution, Figma integration, file operations, web tools, and more.
# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh # For macOS/Linux
# or
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex" # For Windows
# Run MCP server (latest version)
uvx "mcp-toolbox@latest" stdio
# For full features including audio and memory tools
uvx "mcp-toolbox[all]@latest" stdio
npx -y @smithery/cli install @ai-zerolab/mcp-toolbox --client claude
pip install "mcp-toolbox[all]"
mcp-toolbox stdio # Run the MCP server
Configure these environment variables for full functionality:
FIGMA_API_KEY
: For Figma integrationTAVILY_API_KEY
: For Tavily searchDUCKDUCKGO_API_KEY
: For DuckDuckGo searchBFL_API_KEY
: For Flux image generation~/Documents/zerolab/mcp-toolbox/memory
(syncs via iCloud)~/.zerolab/mcp-toolbox/memory
Add this to your Claude configuration file:
{
"mcpServers": {
"zerolab-toolbox": {
"command": "uvx",
"args": ["--prerelease=allow", "mcp-toolbox@latest", "stdio"],
"env": {
"FIGMA_API_KEY": "your-figma-api-key",
"TAVILY_API_KEY": "your-tavily-api-key",
"DUCKDUCKGO_API_KEY": "your-duckduckgo-api-key",
"BFL_API_KEY": "your-bfl-api-key"
}
}
}
}
For all features including audio and memory tools:
{
"mcpServers": {
"zerolab-toolbox": {
"command": "uvx",
"args": [
"--prerelease=allow",
"--python=3.12",
"mcp-toolbox[all]@latest",
"stdio"
],
"env": {
"FIGMA_API_KEY": "your-figma-api-key",
"TAVILY_API_KEY": "your-tavily-api-key",
"DUCKDUCKGO_API_KEY": "your-duckduckgo-api-key",
"BFL_API_KEY": "your-bfl-api-key"
}
}
}
}
Generate a debug configuration template with:
uv run generate_config_template.py
execute_command
: Execute command line instructionsread_file_content
: Read content from fileswrite_file_content
: Write content to filesreplace_in_file
: Replace content using regexlist_directory
: List directory contents with detailsget_html
: Get HTML from a URLsave_html
: Save HTML from a URL to a filesearch_with_tavily
: Search using Tavilysearch_with_duckduckgo
: Search using DuckDuckGoget_audio_length
: Get audio file durationget_audio_text
: Transcribe audio from time rangesthink
: Log thoughts to memoryget_session_id
: Get current session IDremember
: Store memoriesrecall
: Query memories with semantic searchforget
: Clear memory databaseconvert_file_to_markdown
: Convert files to Markdownconvert_url_to_markdown
: Convert URLs to Markdownflux_generate_image
: Generate and save imagesxiaoyuzhoufm_download
: Download podcast episodes# With stdio transport (default)
mcp-toolbox stdio
# With SSE transport
mcp-toolbox sse --host localhost --port 9871
After configuring Claude Desktop:
Figma interactions:
Command line operations:
Podcast downloads:
Audio processing:
File conversion:
Web operations:
Image generation:
Memory operations:
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "zerolab-toolbox" '{"command":"uvx","args":["--prerelease=allow","mcp-toolbox@latest","stdio"],"env":{"FIGMA_API_KEY":"your-figma-api-key","TAVILY_API_KEY":"your-tavily-api-key","DUCKDUCKGO_API_KEY":"your-duckduckgo-api-key","BFL_API_KEY":"your-bfl-api-key"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"zerolab-toolbox": {
"command": "uvx",
"args": [
"--prerelease=allow",
"mcp-toolbox@latest",
"stdio"
],
"env": {
"FIGMA_API_KEY": "your-figma-api-key",
"TAVILY_API_KEY": "your-tavily-api-key",
"DUCKDUCKGO_API_KEY": "your-duckduckgo-api-key",
"BFL_API_KEY": "your-bfl-api-key"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"zerolab-toolbox": {
"command": "uvx",
"args": [
"--prerelease=allow",
"mcp-toolbox@latest",
"stdio"
],
"env": {
"FIGMA_API_KEY": "your-figma-api-key",
"TAVILY_API_KEY": "your-tavily-api-key",
"DUCKDUCKGO_API_KEY": "your-duckduckgo-api-key",
"BFL_API_KEY": "your-bfl-api-key"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect