promptforge-mcp
v1.0.1
Published
Prompt Forge MCP Server — generate deployment-ready AI agent system prompts from any MCP client
Maintainers
Readme
Prompt Forge MCP Server
Generate deployment-ready AI agent system prompts from any MCP client — Claude Code, Claude Desktop, Cursor, and more.
Powered by the same v2 prompt engine behind getpromptforge.net.
Quick Install
Claude Code
claude mcp add --transport stdio promptforge -- npx -y promptforge-mcpThen set your API key:
claude mcp add --transport stdio --env ANTHROPIC_API_KEY=sk-ant-your-key-here promptforge -- npx -y promptforge-mcpClaude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"promptforge": {
"command": "npx",
"args": ["-y", "promptforge-mcp"],
"env": {
"ANTHROPIC_API_KEY": "sk-ant-your-key-here"
}
}
}
}Cursor
Add to your MCP settings in Cursor:
{
"promptforge": {
"command": "npx",
"args": ["-y", "promptforge-mcp"],
"env": {
"ANTHROPIC_API_KEY": "sk-ant-your-key-here"
}
}
}Environment Variables
| Variable | Required | Description |
|----------|----------|-------------|
| ANTHROPIC_API_KEY | Yes (for generate_prompt) | Your Anthropic API key. Get one at console.anthropic.com |
Tools
generate_prompt
Generate a complete, deployment-ready system prompt for any AI agent role.
Parameters:
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| agent_name | string | Yes | The agent role name (e.g. "Credit Risk Underwriter") |
| agent_desc | string | No | Short description of agent specialty. Auto-filled from registry if agent_name matches. |
| industry | string | No | Industry context (e.g. "Finance"). Auto-filled from registry if agent_name matches. |
| user_context | string | No | Your role and situation for personalization |
Example:
Generate a prompt for a "Credit Risk Underwriter" agentGenerate a prompt for agent_name="Medical Scribe" with user_context="I'm a solo physician running a family practice with 800 patients"You can also generate prompts for custom roles not in the registry:
Generate a prompt for a "Podcast Production Manager" in the "Media" industryReturns: A complete 8-section system prompt:
- Agent Identity
- Core Capabilities
- Behavioral Guidelines
- Domain Knowledge
- Interaction Protocol
- Output Format
- Constraints & Safety
- First Message
list_agents
Browse the full agent registry (251 agents across 41 industries).
Parameters:
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| industry | string | No | Filter to one industry |
| search | string | No | Search by keyword |
Example:
List all Finance agentsSearch agents for "compliance"list_industries
List all 41 industries with agent counts and Pro/Free status.
Example:
Show me all Prompt Forge industriesHow It Works
- You ask for a prompt by agent name (or any custom role)
- The server looks up the agent in the registry for description and industry context
- It constructs a meta-prompt using Prompt Forge's v2 template (XML-tagged, 8-section structure)
- It calls the Claude API to generate the system prompt
- The complete system prompt is returned — ready to paste into any AI tool
Cost
Each generate_prompt call uses approximately $0.02 of Claude API credits (Sonnet model, ~4K output tokens).
list_agents and list_industries are free — no API call needed.
About Prompt Forge
Prompt Forge is the first AI agent prompt generation platform. Unlike static prompt libraries, it generates fresh, deployment-ready system prompts on demand using Claude's API.
- 251 agents across 41 industries
- One-click generation — pick an industry, pick an agent, get a prompt
- $12/month Pro for unlimited generates + workspace features
Built by Hilbert Entertainment, LLC
