mirror of
https://github.com/cursor/plugins.git
synced 2026-09-14 20:00:00 +08:00
Point the Coda plugin at the Superhuman Docs endpoint
Coda became Superhuman Docs on 2026-07-08 and the MCP server moved with it. Superhuman's July changelog is explicit that "the old coda.io/apis/mcp address keeps working for existing customers for a few more months, but new customers should use the new one" — and a marketplace listing produces new customers by definition, so shipping coda.io would hand every installer a URL on a clock. Co-authored-by: Roshan Sadanani <roshansada@users.noreply.github.com>
This commit is contained in:
+2
-2
@@ -10,15 +10,15 @@
|
||||
"name": "Cursor",
|
||||
"email": "plugins@cursor.com"
|
||||
},
|
||||
"homepage": "https://help.coda.io/hc/en-us/articles/44722661982989-Connect-to-the-Coda-MCP",
|
||||
"homepage": "https://help.superhuman.com/hc/en-us/articles/46210076980365-Connect-to-the-Coda-MCP",
|
||||
"repository": "https://github.com/cursor/plugins",
|
||||
"license": "MIT",
|
||||
"logo": "assets/logo.png",
|
||||
"keywords": [
|
||||
"coda",
|
||||
"superhuman",
|
||||
"docs",
|
||||
"tables",
|
||||
"superhuman",
|
||||
"knowledge",
|
||||
"mcp"
|
||||
],
|
||||
|
||||
Vendored
+1
-1
@@ -4,6 +4,6 @@ All notable changes to this plugin will be documented here.
|
||||
|
||||
## 1.0.0 — initial release
|
||||
|
||||
- Added the `coda` MCP server pointing at `https://coda.io/apis/mcp`.
|
||||
- Added the `coda` MCP server pointing at `https://docs.superhuman.com/apis/mcp`.
|
||||
- Auth uses OAuth — no API key or client ID to configure.
|
||||
- Logo: Coda's official mark, from the `coda` GitHub organization.
|
||||
|
||||
Vendored
+12
-9
@@ -19,17 +19,19 @@ Or run `/add-plugin coda` in chat.
|
||||
"mcpServers": {
|
||||
"coda": {
|
||||
"type": "http",
|
||||
"url": "https://coda.io/apis/mcp"
|
||||
"url": "https://docs.superhuman.com/apis/mcp"
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Auth is OAuth 2 with PKCE. Cursor prompts for Coda sign-in when the plugin connects. An OAuth connection is automatically scoped to both read and write.
|
||||
Auth is OAuth 2 with PKCE. Cursor prompts for sign-in when the plugin connects. An OAuth connection is automatically scoped to both read and write.
|
||||
|
||||
## Before you connect
|
||||
|
||||
Coda MCP is in beta. Doc Makers on paid Coda plans get the full experience; Doc Makers on free plans and Editors get a capped "free taste" (30 requests per week, 60 per month), and Editors are limited to read tools.
|
||||
Coda is now **Superhuman Docs**, and the MCP server moved with it to `docs.superhuman.com`. Your existing Coda account, docs, and plan are unchanged.
|
||||
|
||||
The MCP server is in beta. Doc Makers on paid plans get the full experience; Doc Makers on free plans and Editors get a capped "free taste" (30 requests per week, 60 per month), and Editors are limited to read tools.
|
||||
|
||||
## What agents can do
|
||||
|
||||
@@ -44,16 +46,17 @@ The hosted runtime is the source of truth for tool names and schemas.
|
||||
|
||||
## Notes
|
||||
|
||||
- Tool calls run as the Coda user who authorizes the connection.
|
||||
- Coda also accepts a personal access token sent as `Authorization: Bearer <token>`, which lets you pick read-only, write-only, or read+write. The token must be created with restriction type **MCP** or the server returns 401. Coda currently recommends the token path for Cursor because of refresh-token handling.
|
||||
- Coda is rebranding to Superhuman Docs and serves the same server at `https://docs.superhuman.com/apis/mcp`. Coda says existing `coda.io` connections keep working.
|
||||
- Tool calls run as the user who authorizes the connection.
|
||||
- The older `https://coda.io/apis/mcp` address still serves existing connections, but Superhuman's changelog says new setups should use `docs.superhuman.com/apis/mcp` — so that is what this plugin ships.
|
||||
- Superhuman also accepts a personal access token sent as `Authorization: Bearer <token>`, which lets you pick read-only, write-only, or read+write instead of OAuth's read+write. The token must be created with restriction type **MCP** or the server returns 401. Superhuman currently recommends the token path for Cursor because of refresh-token handling.
|
||||
- The `coda-mcp` npm package is a community local server by a third-party maintainer, unrelated to this hosted endpoint.
|
||||
|
||||
## Docs
|
||||
|
||||
- Connect to the Coda MCP: https://help.coda.io/hc/en-us/articles/44722661982989-Connect-to-the-Coda-MCP
|
||||
- Superhuman Docs MCP: https://help.superhuman.com/hc/en-us/articles/46210076980365-Connect-to-the-Coda-MCP
|
||||
- Server URL: https://coda.io/apis/mcp
|
||||
- Connect to the Coda MCP: https://help.superhuman.com/hc/en-us/articles/46210076980365-Connect-to-the-Coda-MCP
|
||||
- Security recommendations: https://help.superhuman.com/hc/en-us/articles/46210118248205-Security-recommendations-for-the-Coda-MCP
|
||||
- What's changing: Coda becomes Superhuman Docs: https://help.superhuman.com/hc/en-us/articles/46210093285773-What-s-changing-Coda-becomes-Superhuman-Docs
|
||||
- Server URL: https://docs.superhuman.com/apis/mcp
|
||||
|
||||
Logo is Coda's official mark, from the `coda` GitHub organization.
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -2,7 +2,7 @@
|
||||
"mcpServers": {
|
||||
"coda": {
|
||||
"type": "http",
|
||||
"url": "https://coda.io/apis/mcp"
|
||||
"url": "https://docs.superhuman.com/apis/mcp"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user