@codemap-ai/mcp 1.1.4 → 1.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,25 +1,38 @@
|
|
|
1
1
|
# @codemap-ai/mcp
|
|
2
2
|
|
|
3
|
-
CodeMap MCP server for
|
|
3
|
+
Standalone CodeMap MCP server for editor and agent integrations such as Claude Code, Cursor, Codex, Gemini, OpenCode, and GitHub Copilot.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @codemap-ai/mcp
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This package installs the `codemap-mcp` binary.
|
|
4
12
|
|
|
5
13
|
## Usage
|
|
6
14
|
|
|
7
|
-
Add to your MCP client config:
|
|
15
|
+
Add CodeMap to your MCP client config:
|
|
8
16
|
|
|
9
17
|
```json
|
|
10
18
|
{
|
|
11
19
|
"mcpServers": {
|
|
12
20
|
"codemap": {
|
|
13
21
|
"command": "npx",
|
|
14
|
-
"args": ["-y", "@codemap-ai/mcp"]
|
|
15
|
-
"env": {
|
|
16
|
-
"CODEMAP_API_TOKEN": "<your-token>"
|
|
17
|
-
}
|
|
22
|
+
"args": ["-y", "@codemap-ai/mcp"]
|
|
18
23
|
}
|
|
19
24
|
}
|
|
20
25
|
}
|
|
21
26
|
```
|
|
22
27
|
|
|
28
|
+
Then authenticate with the CodeMap CLI:
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
codemap login
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
If you want the full interactive terminal agent plus editor integration helpers, install `@codemap-ai/cli` instead.
|
|
35
|
+
|
|
23
36
|
## Links
|
|
24
37
|
|
|
25
38
|
- [codemap.codes](https://codemap.codes)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemap-ai/mcp",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "CodeMap MCP server for IDE integrations",
|
|
6
6
|
"license": "MIT",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"tsup": "^8.5.1",
|
|
23
23
|
"tsx": "^4.21.0",
|
|
24
24
|
"typescript": "~5.9.2",
|
|
25
|
-
"@codemap-ai/core": "1.1.
|
|
25
|
+
"@codemap-ai/core": "1.1.5"
|
|
26
26
|
},
|
|
27
27
|
"publishConfig": {
|
|
28
28
|
"access": "public"
|