Skip to content

Commit 590a68a

Browse files
committed
Fix: Update documentation to use https://polyneural.ai as default URL
- Change all localhost:8787 references to https://polyneural.ai - Update README.md configuration examples and troubleshooting - Update INSTALL.md to be consistent with production URL - Ensures documentation reflects production-ready setup
1 parent c3a775c commit 590a68a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

INSTALL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"command": "node",
2929
"args": ["/path/to/mcpb/server/index.js"],
3030
"env": {
31-
"API_URL": "https://api.polyneural.ai",
31+
"API_URL": "https://polyneural.ai",
3232
"API_KEY": "kg_your_api_key_here",
3333
"DEBUG": "false",
3434
"TIMEOUT": "30"
@@ -44,7 +44,7 @@
4444
- **API_KEY**: Your PolyNeural.ai API key (format: `kg_xxxxxxxx`)
4545

4646
### Optional Settings
47-
- **API_URL**: API endpoint (default: `https://api.polyneural.ai`)
47+
- **API_URL**: API endpoint (default: `https://polyneural.ai`)
4848
- **DEBUG**: Enable debug logging (default: `false`)
4949
- **TIMEOUT**: Request timeout in seconds (default: `30`)
5050

@@ -54,7 +54,7 @@
5454
This usually means:
5555
1. **Missing API Key**: Ensure your PolyNeural.ai API key is set
5656
2. **Invalid Format**: API key must start with `kg_`
57-
3. **Network Issues**: Check connection to `api.polyneural.ai`
57+
3. **Network Issues**: Check connection to `polyneural.ai`
5858

5959
### "No tools available"
6060
1. **Restart** your MCP client after installation

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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`)
1717
2. **Valid API Key**: You need a PolyNeural.ai API key (format: `kg_xxxxxxxx`)
1818
3. **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

Comments
 (0)