Skip to content

Commit 8c9efc6

Browse files
committed
Remove trailing slash from MCP server URL in README
- Standardize MCP server URL format across documentation - Update all occurrence examples to exclude the trailing slash
1 parent be21f5f commit 8c9efc6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ After setup, try these commands with your AI assistant:
5252

5353
## 🚀 Quick Start (Remote)
5454

55-
**The fastest way to get started** - no installation required! Our remote MCP server at `https://mcp.codealive.ai/api/` provides instant access to CodeAlive's capabilities.
55+
**The fastest way to get started** - no installation required! Our remote MCP server at `https://mcp.codealive.ai/api` provides instant access to CodeAlive's capabilities.
5656

5757
### Step 1: Get Your API Key
5858

@@ -72,7 +72,7 @@ Select your preferred AI client below for instant setup:
7272
**One command setup:**
7373

7474
```bash
75-
claude mcp add --transport http codealive https://mcp.codealive.ai/api/ --header "Authorization: Bearer YOUR_API_KEY_HERE"
75+
claude mcp add --transport http codealive https://mcp.codealive.ai/api --header "Authorization: Bearer YOUR_API_KEY_HERE"
7676
```
7777

7878
Replace `YOUR_API_KEY_HERE` with your actual API key. That's it! 🎉
@@ -88,7 +88,7 @@ Replace `YOUR_API_KEY_HERE` with your actual API key. That's it! 🎉
8888
{
8989
"mcpServers": {
9090
"codealive": {
91-
"url": "https://mcp.codealive.ai/api/",
91+
"url": "https://mcp.codealive.ai/api",
9292
"headers": {
9393
"Authorization": "Bearer YOUR_API_KEY_HERE"
9494
}
@@ -108,7 +108,7 @@ Replace `YOUR_API_KEY_HERE` with your actual API key. That's it! 🎉
108108
mcpServers:
109109
- name: CodeAlive
110110
type: streamable-http
111-
url: https://mcp.codealive.ai/api/
111+
url: https://mcp.codealive.ai/api
112112
requestOptions:
113113
headers:
114114
Authorization: "Bearer YOUR_API_KEY_HERE"
@@ -128,7 +128,7 @@ mcpServers:
128128
"servers": {
129129
"codealive": {
130130
"type": "http",
131-
"url": "https://mcp.codealive.ai/api/",
131+
"url": "https://mcp.codealive.ai/api",
132132
"headers": {
133133
"Authorization": "Bearer YOUR_API_KEY_HERE"
134134
}
@@ -153,7 +153,7 @@ mcpServers:
153153
{
154154
"mcpServers": {
155155
"codealive": {
156-
"url": "https://mcp.codealive.ai/api/",
156+
"url": "https://mcp.codealive.ai/api",
157157
"headers": {
158158
"Authorization": "Bearer YOUR_API_KEY_HERE"
159159
}

0 commit comments

Comments
 (0)