@@ -13,7 +13,7 @@ This MCP Bundle implements a **stdio MCP server** that bridges to the PolyNeural
1313
1414## Prerequisites
1515
16- 1 . ** PolyNeural.ai Backend Running** : The backend must be accessible (default: ` http ://localhost:8787 ` )
16+ 1 . ** PolyNeural.ai Backend Running** : The backend must be accessible (default: ` https ://polyneural.ai ` )
17172 . ** Valid API Key** : You need a PolyNeural.ai API key (format: ` kg_xxxxxxxx ` )
18183 . ** Node.js 16+** : Required for running the extension
1919
@@ -42,7 +42,7 @@ npm install
4242 "command" : " node" ,
4343 "args" : [" /path/to/mcpb/server/index.js" ],
4444 "env" : {
45- "API_URL" : " http ://localhost:8787 " ,
45+ "API_URL" : " https ://polyneural.ai " ,
4646 "API_KEY" : " kg_your_api_key_here" ,
4747 "DEBUG" : " false" ,
4848 "TIMEOUT" : " 30"
@@ -58,7 +58,7 @@ The MCPB bundle supports these user configuration options (set via MCPB client U
5858
5959| Variable | Description | Default | Required |
6060| ----------| -------------| ---------| ----------|
61- | ` API_URL ` | PolyNeural.ai backend URL | ` http ://localhost:8787 ` | No |
61+ | ` API_URL ` | PolyNeural.ai backend URL | ` https ://polyneural.ai ` | No |
6262| ` API_KEY ` | Your PolyNeural.ai API key | - | ** Yes** |
6363| ` DEBUG ` | Enable debug logging | ` false ` | No |
6464| ` TIMEOUT ` | Request timeout in seconds | ` 30 ` | No |
@@ -92,7 +92,7 @@ Once installed, Claude will have access to these PolyNeural.ai knowledge graph t
9292### Manual Testing
9393``` bash
9494# Set environment variables and run
95- API_URL=http ://localhost:8787 API_KEY=kg_your_key DEBUG=true npm start
95+ API_URL=https ://polyneural.ai API_KEY=kg_your_key DEBUG=true npm start
9696```
9797
9898### Create MCPB Bundle
@@ -115,7 +115,7 @@ node test-integration.js
115115### Common Issues
116116
117117** Bundle won't start:**
118- - Verify the PolyNeural.ai backend is running: ` curl http ://localhost:8787 /health `
118+ - Verify the PolyNeural.ai backend is running: ` curl https ://polyneural.ai /health `
119119- Check your API key format (must start with ` kg_ ` )
120120- Enable debug mode in the bundle configuration
121121
@@ -127,7 +127,7 @@ node test-integration.js
127127** Connection timeouts:**
128128- Increase the ` TIMEOUT ` value
129129- Check network connectivity to the backend
130- - Verify the backend MCP endpoints are accessible: ` curl -H "Authorization: Bearer kg_your_key" http ://localhost:8787 /mcp/initialize `
130+ - Verify the backend MCP endpoints are accessible: ` curl -H "Authorization: Bearer kg_your_key" https ://polyneural.ai /mcp/initialize `
131131
132132### Debug Mode
133133
0 commit comments