ToolForge MCP
Click on "Install 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., "@ToolForge MCPfind a tool that converts markdown to HTML"
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.
ToolForge MCP
ToolForge MCP is a governed registry of reusable Python tools for AI agents. It lets agents search approved tools by intent, run approved tools with JSON input, register newly generated scripts as drafts, and manage tool lifecycle through approval, updates, deprecation, and rollback.
The MVP is MCP-only. It runs over stdio by default and does not include a web UI or HTTP server.
Features
Register Python scripts as draft reusable tools
Approve reviewed tool versions for execution
Search approved tools by semantic-style intent with keyword/tag fallback
Run approved tools through a subprocess JSON contract
Log every run to SQLite
Seed safe default tools on first startup
Update, deprecate, and rollback tool versions
Related MCP server: PullNexus
Runtime Paths
By default, ToolForge stores metadata and runtime tool files locally:
data/toolforge.db
tools/Override these paths with:
export TOOLFORGE_DB_PATH=/path/to/toolforge.db
export TOOLFORGE_TOOLS_DIR=/path/to/tools
export TOOLFORGE_WORK_DIR=/path/to/workMCP Server
Run the server with:
uv run toolforge-mcpor:
python3 server.pyConnect MCP Clients
ToolForge MCP is a local stdio MCP server. The MCP client starts the process, then discovers the server instructions and available tools at connection time.
Use absolute paths in client configuration so the server can start from any
working directory. Replace /absolute/path/to/toolforge-mcp with your local
checkout path.
Recommended Setup
Install runtime dependencies before connecting a client:
cd /absolute/path/to/toolforge-mcp
uv sync --extra devThe --extra dev option installs test dependencies and optional libraries used
by the default seed tools, such as PDF and image helpers. Local semantic
embeddings are optional because they pull a larger ML dependency stack. To enable
them, run:
uv sync --extra dev --extra semanticIf you do not use uv, create a Python environment and install the package
dependencies from pyproject.toml.
Codex
Codex reads MCP servers from ~/.codex/config.toml, or from a project-scoped
.codex/config.toml in trusted projects. The Codex CLI and IDE extension share
this configuration.
CLI setup:
codex mcp add toolforge --env TOOLFORGE_DB_PATH=/absolute/path/to/toolforge-mcp/data/toolforge.db --env TOOLFORGE_TOOLS_DIR=/absolute/path/to/toolforge-mcp/tools --env TOOLFORGE_WORK_DIR=/absolute/path/to/toolforge-mcp/work -- uv --directory /absolute/path/to/toolforge-mcp run toolforge-mcpEquivalent ~/.codex/config.toml entry:
[mcp_servers.toolforge]
command = "uv"
args = ["--directory", "/absolute/path/to/toolforge-mcp", "run", "toolforge-mcp"]
startup_timeout_sec = 20
tool_timeout_sec = 120
[mcp_servers.toolforge.env]
TOOLFORGE_DB_PATH = "/absolute/path/to/toolforge-mcp/data/toolforge.db"
TOOLFORGE_TOOLS_DIR = "/absolute/path/to/toolforge-mcp/tools"
TOOLFORGE_WORK_DIR = "/absolute/path/to/toolforge-mcp/work"In the Codex TUI, run /mcp to confirm that toolforge is connected.
Claude Code
Claude Code can add local stdio MCP servers with claude mcp add. The --
separator is important: everything after it is the command used to start the MCP
server.
CLI setup:
claude mcp add \
--env TOOLFORGE_DB_PATH=/absolute/path/to/toolforge-mcp/data/toolforge.db \
--env TOOLFORGE_TOOLS_DIR=/absolute/path/to/toolforge-mcp/tools \
--env TOOLFORGE_WORK_DIR=/absolute/path/to/toolforge-mcp/work \
--transport stdio \
toolforge \
-- uv --directory /absolute/path/to/toolforge-mcp run toolforge-mcpProject-scoped .mcp.json example:
{
"mcpServers": {
"toolforge": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/toolforge-mcp", "run", "toolforge-mcp"],
"env": {
"TOOLFORGE_DB_PATH": "/absolute/path/to/toolforge-mcp/data/toolforge.db",
"TOOLFORGE_TOOLS_DIR": "/absolute/path/to/toolforge-mcp/tools",
"TOOLFORGE_WORK_DIR": "/absolute/path/to/toolforge-mcp/work"
},
"timeout": 120000
}
}
}Inside Claude Code, use /mcp to inspect server status. Project-scoped MCP
servers may require workspace trust approval before they become active.
Cursor
Cursor reads MCP servers from JSON configuration. Use a project-scoped
.cursor/mcp.json when ToolForge should be available only for this repository,
or a user-level MCP configuration when you want it available across projects.
Project-scoped .cursor/mcp.json example:
{
"mcpServers": {
"toolforge": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/toolforge-mcp", "run", "toolforge-mcp"],
"env": {
"TOOLFORGE_DB_PATH": "/absolute/path/to/toolforge-mcp/data/toolforge.db",
"TOOLFORGE_TOOLS_DIR": "/absolute/path/to/toolforge-mcp/tools",
"TOOLFORGE_WORK_DIR": "/absolute/path/to/toolforge-mcp/work"
}
}
}
}After editing Cursor MCP settings, reload Cursor or restart the agent session, then confirm that the ToolForge tools appear in Cursor's MCP/tools panel.
Without uv
If uv is not available, install the project into a virtual environment and use
that environment's Python directly:
cd /absolute/path/to/toolforge-mcp
python3 -m venv .venv
. .venv/bin/activate
python3 -m pip install -e ".[dev]"
# Optional semantic embeddings:
# python3 -m pip install -e ".[dev,semantic]"Then replace the MCP command with:
{
"command": "/absolute/path/to/toolforge-mcp/.venv/bin/python",
"args": ["/absolute/path/to/toolforge-mcp/server.py"]
}Agent Governance Pack
ToolForge includes copy-ready governance examples for teams that want Codex, Claude Code, and Cursor to consistently reuse MCP tools instead of creating throwaway scripts.
See governance/ for:
Codex
AGENTS.mdguidance andconfig.tomlMCP exampleClaude Code
CLAUDE.mdguidance and.mcp.jsonexampleCursor
.mdcrule and.cursor/mcp.jsonexample
The shared policy is:
Search ToolForge before creating utility scripts.
Run an approved tool when one exists.
Register newly generated reusable utility scripts as draft tools.
Approve tools only after human or authorized workflow review.
Setup Script
Use the setup script to install project-scoped governance and MCP config for Codex, Claude Code, and Cursor. Running the script without arguments prints help and does not write files:
python3 scripts/setup_agent_governance.pyPass explicit options to install governance/config files:
python3 scripts/setup_agent_governance.py \
--agents all \
--target-project /path/to/your/project \
--toolforge-dir /absolute/path/to/toolforge-mcpPreview changes without writing files:
python3 scripts/setup_agent_governance.py --agents all --target-project /path/to/your/project --dry-runConfigure one agent at a time:
python3 scripts/setup_agent_governance.py --agents codex --target-project /path/to/your/project
python3 scripts/setup_agent_governance.py --agents claude --target-project /path/to/your/project
python3 scripts/setup_agent_governance.py --agents cursor --target-project /path/to/your/projectThe script updates managed ToolForge sections idempotently and preserves other MCP servers in JSON config files.
Stored Tool Contract
Stored scripts must:
read one JSON object from stdin
write one JSON object to stdout
exit nonzero on failure
Default Seed Tools
On first startup, ToolForge seeds these approved tools:
validate_json_schemaclean_csv_filegenerate_markdown_reportresize_imageextract_text_from_pdf
The seed operation is idempotent and recorded in SQLite.
License
Apache License 2.0
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ThisIsCKM-org/toolforge-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server