Skip to content

Commit 94cdcd2

Browse files
committed
Point API key help link to developer portal keys section
1 parent 9097900 commit 94cdcd2

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{
88
"name": "mantis",
99
"description": "Mantis MCP: spaces, threads, and map context for Claude Code",
10-
"version": "1.0.10",
10+
"version": "1.0.11",
1111
"source": "./"
1212
}
1313
]

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "mantis",
33
"description": "Connect Claude Code to Mantis MCP — explore maps, clusters, and notebooks in your spaces",
4-
"version": "1.0.10",
4+
"version": "1.0.11",
55
"author": {
66
"name": "MIT Mantis"
77
},

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Claude Code plugin for [Mantis](https://mantis.csail.mit.edu) — connect your t
77
- [Claude Code](https://code.claude.com) (`claude` on your PATH)
88
- [Node.js](https://nodejs.org/) 18+
99
- A running Mantis API (default `https://kellis-h200-1.csail.mit.edu`; local dev: `http://localhost:8000`)
10-
- A Mantis **Developer API key** (`live_…`) from https://mantis.csail.mit.edu/developer
10+
- A Mantis **Developer API key** (`live_…`) from https://mantis.csail.mit.edu/developer/#keys
1111

1212
## Install
1313

lib/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import os from 'node:os';
44

55
const CONFIG_NAME = 'config.json';
66
export const DEFAULT_API_BASE = 'https://kellis-h200-1.csail.mit.edu';
7-
export const DEVELOPER_PORTAL_URL = 'https://mantis.csail.mit.edu/developer';
7+
export const DEVELOPER_PORTAL_URL = 'https://mantis.csail.mit.edu/developer/#keys';
88

99
/** Same file whether set from Bash (no plugin env) or headersHelper (plugin env). */
1010
export function allConfigPaths() {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mantis-claude-code",
3-
"version": "1.0.10",
3+
"version": "1.0.11",
44
"description": "Claude Code plugin for Mantis — MCP setup, space/thread selection, and platform skills",
55
"type": "module",
66
"license": "MIT",

skills/connect/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ mantis-setup
3535

3636
That installs the **mantis@mantis-plugins** Claude Code plugin and saves API/space/thread config.
3737

38-
Then: **`/reload-plugins`** in Claude Code (if already open). Confirm **API URL** when prompted (default `https://kellis-h200-1.csail.mit.edu`; use `http://localhost:8000` for local Docker). API keys: https://mantis.csail.mit.edu/developer
38+
Then: **`/reload-plugins`** in Claude Code (if already open). Confirm **API URL** when prompted (default `https://kellis-h200-1.csail.mit.edu`; use `http://localhost:8000` for local Docker). API keys: https://mantis.csail.mit.edu/developer/#keys
3939

4040
If `/plugin` shows **Disabled** or *not installed*: run `claude plugin install mantis@mantis-plugins`, enable it, then `/reload-plugins`. If update fails, uninstall and reinstall the plugin (stale `installed_plugins.json` / orphaned cache).
4141

skills/mantis/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Space management tools (`create_space`, `create_map_from_url`, etc.) need sessio
3939
- Refer to spaces and maps by **name** in user-facing text; use UUIDs only in tool arguments.
4040
- Maps belong to a space; pick `primary_map_id` from space list API or `get_space_context`.
4141
- Notebooks can bootstrap from `X-Space-State-ID` alone; file uploads still need a chat session when applicable.
42-
- Default API URL: `https://kellis-h200-1.csail.mit.edu` (local: `http://localhost:8000`). API keys: https://mantis.csail.mit.edu/developer
42+
- Default API URL: `https://kellis-h200-1.csail.mit.edu` (local: `http://localhost:8000`). API keys: https://mantis.csail.mit.edu/developer/#keys
4343

4444
## Slash commands in this plugin
4545

0 commit comments

Comments
 (0)