From 86a2256b63c7a2fd0753d8d151a7a2830360c81e Mon Sep 17 00:00:00 2001 From: Ace Data Cloud Dev Date: Sun, 22 Mar 2026 18:57:33 +0800 Subject: [PATCH] feat: enhance README with more MCP platform integrations --- README.md | 112 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 112 insertions(+) diff --git a/README.md b/README.md index ef9e5ed..b1b0736 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,118 @@ Or install the [Ace Data Cloud MCP extension](https://marketplace.visualstudio.c } ``` + +#### Claude Code + +Claude Code supports MCP servers natively: + +```bash +claude mcp add shorturl --transport http https://shorturl.mcp.acedata.cloud/mcp \ + -h "Authorization: Bearer YOUR_API_TOKEN" +``` + +Or add to your project's `.mcp.json`: + +```json +{ + "mcpServers": { + "shorturl": { + "type": "streamable-http", + "url": "https://shorturl.mcp.acedata.cloud/mcp", + "headers": { + "Authorization": "Bearer YOUR_API_TOKEN" + } + } + } +} +``` + +#### Cline + +Add to Cline's MCP settings (`.cline/mcp_settings.json`): + +```json +{ + "mcpServers": { + "shorturl": { + "type": "streamable-http", + "url": "https://shorturl.mcp.acedata.cloud/mcp", + "headers": { + "Authorization": "Bearer YOUR_API_TOKEN" + } + } + } +} +``` + +#### Amazon Q Developer + +Add to your MCP configuration: + +```json +{ + "mcpServers": { + "shorturl": { + "type": "streamable-http", + "url": "https://shorturl.mcp.acedata.cloud/mcp", + "headers": { + "Authorization": "Bearer YOUR_API_TOKEN" + } + } + } +} +``` + +#### Roo Code + +Add to Roo Code MCP settings: + +```json +{ + "mcpServers": { + "shorturl": { + "type": "streamable-http", + "url": "https://shorturl.mcp.acedata.cloud/mcp", + "headers": { + "Authorization": "Bearer YOUR_API_TOKEN" + } + } + } +} +``` + +#### Continue.dev + +Add to `.continue/config.yaml`: + +```yaml +mcpServers: + - name: shorturl + type: streamable-http + url: https://shorturl.mcp.acedata.cloud/mcp + headers: + Authorization: "Bearer YOUR_API_TOKEN" +``` + +#### Zed + +Add to Zed's settings (`~/.config/zed/settings.json`): + +```json +{ + "language_models": { + "mcp_servers": { + "shorturl": { + "url": "https://shorturl.mcp.acedata.cloud/mcp", + "headers": { + "Authorization": "Bearer YOUR_API_TOKEN" + } + } + } + } +} +``` + #### cURL Test ```bash