MCP Server
@runstamp/mcp-server exposes Runstamp's document generation to any MCP-compatible agent.
Install
npx -y @runstamp/mcp-server
The server is invoked through npx inside your agent's MCP client config — no global install needed.
Client Configuration
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"runstamp": {
"command": "npx",
"args": ["-y", "@runstamp/mcp-server"]
}
}
}
Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"runstamp": {
"command": "npx",
"args": ["-y", "@runstamp/mcp-server"]
}
}
}
VS Code Copilot
Add to .vscode/mcp.json:
{
"servers": {
"runstamp": {
"command": "npx",
"args": ["-y", "@runstamp/mcp-server"]
}
}
}
Gemini CLI
Add to your settings.json:
{
"mcpServers": {
"runstamp": {
"command": "npx",
"args": ["-y", "@runstamp/mcp-server"]
}
}
}
Windsurf
Add to your Windsurf MCP configuration:
{
"mcpServers": {
"runstamp": {
"command": "npx",
"args": ["-y", "@runstamp/mcp-server"]
}
}
}
Cline
Add to your Cline MCP settings:
{
"mcpServers": {
"runstamp": {
"command": "npx",
"args": ["-y", "@runstamp/mcp-server"]
}
}
}
Authentication and Hosted API
The MCP server is local-only: every tool runs in-process over stdio, with no account, authentication, or API key. RUNSTAMP_API_KEY is not an MCP server setting.
The authenticated hosted API is a separate interface for active Pro, Platform, and Enterprise workspaces. Hosted requests require a pj_live_ key as Authorization: Bearer pj_live_YOUR_KEY; see the hosted API reference. Do not put that hosted key in the local MCP configuration above.