mcp-toolforge
Generates complete, runnable MCP server projects from natural-language tool descriptions, including schema, implementation, tests, README, and license. It enables AI agents to scaffold standalone MCP servers ready to install and run.
README
mcp-toolforge
A meta-MCP server that generates new MCP servers from natural-language tool descriptions.
Given a project name, a short description, and a list of natural-language tool
descriptions (e.g. "fetches the weather for a string city and returns a string summary"),
mcp-toolforge writes a complete, runnable MCP server project — schema, implementation,
tests with real assertions, README, LICENSE — ready to install and run.
<!-- BEGIN-ARCHITECTURE -->
flowchart TD
subgraph Client_Layer["AI Client / Claude Desktop"]
A["Client (Claude, Cursor, etc.)"]
end
subgraph Meta_Server["mcp-toolforge (this repo)"]
M["mcp_toolforge.server"]
G["mcp_toolforge.generator"]
end
subgraph Generated["Generated Server Project"]
P["src/<pkg>/__init__.py"]
S["src/<pkg>/server.py"]
T["tests/test_<pkg>.py"]
R["README.md"]
L["LICENSE"]
PP["pyproject.toml"]
end
A -- "MCP stdio JSON-RPC" --> M
M -- "generate_server tool call" --> G
G -- "writes files" --> P
G -- "writes files" --> S
G -- "writes files" --> T
G -- "writes files" --> R
G -- "writes files" --> L
G -- "writes files" --> PP
<!-- END-ARCHITECTURE -->
Architecture
┌─────────────────────┐ ┌──────────────────────────┐
│ AI Client │ stdio │ mcp-toolforge server │
│ (Claude, Cursor) │──JSON──│ (this repo) │
└─────────────────────┘ RPC └────────┬───────────────┘
│ generate_server
│ (name, description,
│ tool_descriptions, dest)
▼
┌────────────────────────────────────┐
│ generator.generate_project() │
│ parses NL → ToolSpec → ServerSpec │
│ renders: pyproject, server.py, │
│ tests, README, LICENSE │
└────────────────────────────────────┘
│
┌─────────────────┴─────────────────┐
│ Example generated servers │
│ • examples/weather_server │
│ • examples/todo_server │
│ • examples/math_server │
└────────────────────────────────────┘
Quickstart
Install mcp-toolforge
pip install -e ".[dev]"
Run mcp-toolforge itself (meta-server)
As an MCP server (stdio transport):
{
"mcpServers": {
"mcp-toolforge": {
"command": "python",
"args": ["-m", "mcp_toolforge.server"],
"cwd": "/path/to/mcp-toolforge"
}
}
}
Or as a CLI that generates a standalone server project:
# Interactive wizard
mcp-toolforge -i
# One-shot
mcp-toolforge \
--name my_server \
--description "A server that does X" \
--tool "fetches the weather for a string city and returns a string summary" \
--dest ./my_server
Using the generate_server tool
When mcp-toolforge is registered as an MCP server, an AI agent can call:
generate_server(
name="my_server",
description="A server that does X",
tool_descriptions=[
"fetches the weather for a string city and returns a string summary",
"adds a string task and returns a string confirmation"
],
dest="/path/to/output" # optional, defaults to /tmp/mcp-toolforge-gen
)
The tool writes a complete project to dest/<package_name>/ and returns a
summary string. The generated server can then be installed and registered
with your MCP client independently.
How natural-language parsing works
Each tool description should follow the pattern:
<VERB> [a/an] <type> <name> [, <type> <name>] ... and returns <type> <description>
Examples:
| Description | Tool name | Params |
|---|---|---|
fetches the weather for a string city and returns a string summary |
fetch |
city: string |
adds a string task and returns a string confirmation |
add |
task: string |
multiplies two numbers given a number a and number b and returns a number product |
multiply |
a: number, b: number |
lists all todos and returns an array of todo items |
list |
query: string (fallback) |
Recognized parameter types: string, integer, number, boolean, array.
If no typed parameters are detected, a free-form query: string parameter is
inferred.
Examples
Three example servers are generated into examples/:
| Server | Package | Tools | Description |
|---|---|---|---|
| WeatherServer | weather_server |
fetch, forecast |
Fetches weather info |
| TodoServer | todo_server |
add, list, remove |
Manages a todo list |
| MathServer | math_server |
add, multiply, compute |
Arithmetic tools |
Each example is a fully working MCP server with its own tests:
cd examples/math_server
pip install -e .
pytest
Development
# Install with dev dependencies
pip install -e ".[dev]"
# Run all tests
pytest
# Run end-to-end test against the meta-server over stdio
python e2e_test.py
# Regenerate examples
python make_examples.py
Testing
tests/test_generator.py— 16 tests for the generator (parsing, schema inference, file rendering, project creation)tests/test_server.py— 5 tests for the meta-MCP server (tool listing, tool calling, error handling)e2e_test.py— end-to-end test that runs the meta-server as a real stdio subprocess and connects with an MCPClient- Each example server ships with 4 tests (12 total across 3 examples)
All tests use real assertions and verify actual file output / tool results.
License
MIT — see LICENSE.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.