1- # Codebuddy Rules MCP Server
1+ # Codingbuddy Rules MCP Server
22
33A NestJS-based Model Context Protocol (MCP) server that exposes the Multi-AI Rules System (` .ai-rules/ ` ) to AI clients.
44
@@ -24,7 +24,7 @@ Add the following configuration to your Claude Desktop config:
2424``` json
2525{
2626 "mcpServers" : {
27- "codebuddy -rules" : {
27+ "codingbuddy -rules" : {
2828 "command" : " npx" ,
2929 "args" : [" codingbuddy" ]
3030 }
@@ -43,8 +43,8 @@ Then configure Claude Desktop:
4343``` json
4444{
4545 "mcpServers" : {
46- "codebuddy -rules" : {
47- "command" : " codebuddy -mcp"
46+ "codingbuddy -rules" : {
47+ "command" : " codingbuddy -mcp"
4848 }
4949 }
5050}
@@ -61,9 +61,9 @@ yarn build
6161``` json
6262{
6363 "mcpServers" : {
64- "codebuddy -rules" : {
64+ "codingbuddy -rules" : {
6565 "command" : " node" ,
66- "args" : [" /ABSOLUTE/PATH/TO/codebuddy /mcp-server/dist/main.js" ]
66+ "args" : [" /ABSOLUTE/PATH/TO/codingbuddy /mcp-server/dist/main.js" ]
6767 }
6868 }
6969}
@@ -76,8 +76,8 @@ Replace `/ABSOLUTE/PATH/TO` with your actual path.
7676Build the Docker image from the ** repository root** :
7777
7878``` bash
79- # Run from codebuddy root
80- docker build -f mcp-server/Dockerfile -t codebuddy -rules-mcp .
79+ # Run from codingbuddy root
80+ docker build -f mcp-server/Dockerfile -t codingbuddy -rules-mcp .
8181```
8282
8383Run the container:
@@ -86,7 +86,7 @@ Run the container:
8686docker run -p 3000:3000 \
8787 -e MCP_TRANSPORT=sse \
8888 -e PORT=3000 \
89- codebuddy -rules-mcp
89+ codingbuddy -rules-mcp
9090```
9191
9292The server will start in SSE mode, exposing:
@@ -99,7 +99,7 @@ The server will start in SSE mode, exposing:
9999| ----------| -------------| ---------|
100100| ` MCP_TRANSPORT ` | Transport mode (` stdio ` or ` sse ` ) | ` stdio ` |
101101| ` PORT ` | HTTP port for SSE mode | ` 3000 ` |
102- | ` CODEBUDDY_RULES_DIR ` | Custom path to ` .ai-rules ` directory | Auto-detected |
102+ | ` CODINGBUDDY_RULES_DIR ` | Custom path to ` .ai-rules ` directory | Auto-detected |
103103
104104## Development
105105
0 commit comments