actionforge-mcp
Bridges ActionForge's hosted function endpoints to any MCP client, letting Claude and others call your generated tools directly.
README
ActionForge MCP server
Publishes an ActionForge account's tools to any MCP client — Claude Desktop, Claude Code, or anything else speaking the Model Context Protocol.
ActionForge turns a description and a pair of JSON Schemas into a hosted API endpoint. You describe the function you need; it generates the implementation, deploys it as a serverless function, and returns a validated URL. Every tool is a pure function of its input — generated code is scanned before deploy and refused if it reaches the network or executes code built at runtime.
This package is the MCP bridge: your endpoints become tools Claude can call
directly. It has no runtime dependencies — stdio, fetch, and about 500
lines.
Get an API key at pritas.github.io/actionforge_ui.
The mapping is close to one-to-one, which is why this wrapper is thin: an
ActionForge tool already is an MCP tool — a name, a description, a JSON Schema
for input, and one for output. tools/list reads GET /api/tools;
tools/call posts to the tool's proxy URL.
Implemented directly against the 2025-06-18 protocol schema rather than via the
SDK. That keeps the install to a single package with nothing beneath it, and
every branch stays exercisable offline — npm run smoke drives the compiled
server over stdio against a closed port, so the handshake, the silence expected
of a notification, and transport-failure handling are all checked without an
account.
Install
npx actionforge-mcp
Zero runtime dependencies — the whole server is stdio, fetch, and about 500
lines. Nothing to install beyond Node 20.12+.
From a checkout of this repo instead:
npm install
npm run build
node dist/server.js
Configure
export ACTIONFORGE_URL=https://your-deployment.example.com
export ACTIONFORGE_API_KEY=af_... # from POST /api/signup, or npm run keygen
npx actionforge-mcp
Everything published is scoped to that key's account. Point it at a different key and it publishes a different tenant's tools — the API enforces the scoping, so the MCP server cannot see past it.
Transport is stdio with newline-delimited JSON. stdout carries protocol frames only; all logging goes to stderr, because anything else corrupts the stream a client is parsing.
Claude Desktop
claude_desktop_config.json:
{
"mcpServers": {
"actionforge": {
"command": "npx",
"args": ["-y", "actionforge-mcp"],
"env": {
"ACTIONFORGE_URL": "https://your-deployment.example.com",
"ACTIONFORGE_API_KEY": "af_..."
}
}
}
}
Claude Code
claude mcp add actionforge \
--env ACTIONFORGE_URL=https://your-deployment.example.com \
--env ACTIONFORGE_API_KEY=af_... \
-- npx -y actionforge-mcp
How failures are reported
The protocol draws a line this server follows exactly, because it decides whether a model can recover on its own:
| Situation | Reported as | Why |
|---|---|---|
Arguments fail the tool's input_schema (400) |
result with isError: true |
The model can read the validation detail and fix the call |
| Tool not ready yet (503) | result with isError: true |
Transient — retry shortly |
| Rate limited (429) | result with isError: true |
Includes how long to wait |
Tool ran but broke its own output_schema (502) |
result with isError: true, named as a fault in the tool |
Not the model's arguments |
| Tool does not exist (404), or an unknown tool name | JSON-RPC error | Nothing the model can correct; the client should re-list |
| ActionForge unreachable | JSON-RPC error -32603 |
Transport failure, not a tool result |
Anything the model could act on stays inside the result where it can see it. Only genuinely exceptional conditions become protocol errors.
Caching
The tool list is cached for 30 seconds, and the cache is dropped immediately when a tool turns out to be gone — so a deleted tool disappears on the next listing rather than lingering until the TTL expires.
Publishing
npm run build && npm run smoke
npm publish --access public
dist/ is gitignored — it is a build artifact, rebuilt by prepublishOnly, so
what npm receives is always compiled from the committed source.
Bump version before each publish; npm refuses to overwrite a released
version.
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.