MCP Toolbox
Provides a web search tool using Google Custom Search API, allowing users to perform internet searches and retrieve results in JSON or Markdown format.
Click on "Deploy 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 Toolboxsearch the web for weather in London"
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 Toolbox: A "BusyBox" for Your LLM
A versatile, containerized server that provides a collection of essential utility tools for LLM clients, all accessible via the Model Context Protocol (MCP). This project is designed to be a simple, easy-to-deploy "swiss army knife" for your AI agents.
For Humans 👋
This guide is for developers who want to quickly deploy and use a powerful set of pre-built tools with their MCP-compatible LLM client (like Cline).
Features
All-in-One: A single, easy-to-deploy container with a wide range of common utilities.
Lightweight: Built on Node.js and Alpine Linux for a small footprint.
Extensible: Designed to be easily extended with new tools.
Comprehensive Toolset: Includes tools for basic utilities, data manipulation, and web interaction.
Getting Started
Production (Published Image)
Prerequisites: You'll need Docker installed.
Run the Server: You can run the server directly from the published Docker image.
docker run -d \ -p 8049:8049 \ -e GOOGLE_API_KEY="YOUR_API_KEY" \ -e GOOGLE_CX="YOUR_SEARCH_ENGINE_ID" \ ghcr.io/phippsy22/mcp-toolbox:latest
Local Development (Building from Source)
Prerequisites: You'll need Docker and Docker Compose installed.
Configuration:
This project uses a local
.envfile for API keys. An example file is provided.Copy the example environment file to create your local configuration:
cp .env.example .envOpen the new
.envfile and add your Google Custom Search credentials. The server will run without these keys, but theweb_searchtool will not be functional.
Build and Run the Server: Use Docker Compose to build and run the container. This will use the
docker-compose.ymlfile in this directory.docker compose up --buildThe server will be available at
http://localhost:8050.Connect Your Client: Configure your MCP client to connect to the server.
For the production image, use port
8049.For local development, use port
8050.
An example
cline_mcp_settings.jsonentry for local development would look like this:{ "mcpServers": { "toolbox-mcp-local": { "autoApprove": [], "disabled": false, "timeout": 360, "type": "sse", "url": "http://localhost:8050/mcp" } } }Note that the
typeis explicitly set to"sse"for compatibility with the current Cline client.
Related MCP server: Sentinel Core Agent
For Robots (and Power Users) 🤖
This section provides the technical details for programmatic interaction and customization.
Docker Image
Registry:
ghcr.ioImage:
ghcr.io/phippsy22/mcp-toolbox:latest
Service Endpoint
URL:
http://localhost:8049/mcpTransport:
sse(Server-Sent Events)
Tool Manifest
echo: A simple tool that returns the text it was given.Parameters:
text(string)
time: Returns the current server time, optionally in a specific timezone.Parameters:
timezone(string, optional)
random: Generates random data such as UUIDs, strings, or numbers.Parameters:
type(enum: "uuid", "string", "number", optional, default: "uuid"),length(number, optional, default: 16),min(number, optional, default: 0),max(number, optional, default: 1)
encoder: Encodes a string using a specified format (base64 or url).Parameters:
text(string),format(enum: "base64", "url")
decoder: Decodes a string from a specified format (base64 or url).Parameters:
text(string),format(enum: "base64", "url")
calculator: Evaluates a mathematical expression.Parameters:
expression(string)
web_fetch: Fetches content from a specified URL and converts it to a specified format.Parameters:
url(string),format(enum: "text", "markdown", "json", optional, default: "text")
system_info: Provides information about the system environment.Parameters: None
web_search: Performs a web search using Google Custom Search.Parameters:
query(string),format(enum: "json", "markdown", optional, default: "json")
This server cannot be deployed
Maintenance
Related MCP Connectors
All public upAPI operations as MCP tools: web scraping, search, screenshots, PDF, OCR and more.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Your org's AI agents, tasks, runs, search, and brain files as MCP tools and resources.
Scrape, crawl and search the web for AI agents via MCP.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides essential utility tools for text processing, file operations, hashing, temperature conversion, password generation, and date/time operations through a comprehensive MCP interface.MIT
- FlicenseNot gradedqualityDmaintenanceEnables file system operations, web scraping, and AI-powered search through MCP tools for use by LLM agents.1-
- AlicenseAqualityBmaintenanceProvides browser automation, audio transcription, and LLM chat as MCP tools for any agent.7MIT
- AlicenseNot gradedqualityCmaintenanceProvides 20 essential tools including HTTP requests, web search, file I/O, shell commands, and persistent memory for any MCP client, with zero configuration required.MIT