-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mcp.json
More file actions
58 lines (58 loc) · 1.9 KB
/
Copy path.mcp.json
File metadata and controls
58 lines (58 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "mcp-forge",
"version": "1.0.0",
"description": "Convert any application into an MCP server using AI — analyze, generate, test, rollback, and chat with the forge agent from inside Claude Code.",
"author": "MCP Forge",
"homepage": "https://github.com/your-org/mcp-forge",
"type": "mcp",
"transport": "sse",
"server": {
"url": "http://localhost:8001/sse",
"headers": {
"X-MCP-Token": "${FORGE_TOKEN}"
}
},
"env": {
"FORGE_TOKEN": {
"description": "MCP Forge auth token — run: grep -m1 '^MCP_AUTH_TOKEN=' .env | cut -d= -f2",
"required": true
}
},
"skills": [
{
"name": "forge:analyze",
"description": "Analyze a project's source code or OpenAPI spec and detect endpoints, schemas, auth",
"usage": "/forge:analyze <project_id>"
},
{
"name": "forge:generate",
"description": "Generate a Python FastMCP / Node.js / Go MCP server from analyzed endpoints",
"usage": "/forge:generate <project_id> [--lang python_fastmcp|nodejs|go]"
},
{
"name": "forge:chat",
"description": "Chat with the AI forge agent for a project — ask it to refactor, clarify, or explain decisions",
"usage": "/forge:chat <project_id> <message>"
},
{
"name": "forge:status",
"description": "List all projects and their current status",
"usage": "/forge:status"
},
{
"name": "forge:test",
"description": "Run AI-generated tests against the generated MCP server",
"usage": "/forge:test <project_id>"
},
{
"name": "forge:rollback",
"description": "Roll back a project to a previous snapshot version",
"usage": "/forge:rollback <project_id> <version>"
}
],
"install": {
"claude_code": "/plugin marketplace add mcp-forge/mcp-forge",
"codex": "codex marketplace add mcp-forge/mcp-forge",
"manual": "See CLAUDE_DESKTOP_PLUGIN.md"
}
}