@igor-olikh/openspec-mcp-server 1.0.0 → 1.0.1
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 +8 -6
- package/package.json +18 -2
package/README.md
CHANGED
|
@@ -21,16 +21,17 @@ Codex has a built-in user interface to easily add these plugins.
|
|
|
21
21
|
You can add it quickly by running this terminal command:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
codex mcp add openspec-server
|
|
24
|
+
codex mcp add openspec-server npx -y @igor-olikh/openspec-mcp-server
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
**Or, manually through the Codex User Interface:**
|
|
28
28
|
1. Open the **"Connect to a custom MCP"** box in Codex.
|
|
29
29
|
2. **Name**: `openspec`
|
|
30
30
|
3. **Mode**: Leave as `STDIO`
|
|
31
|
-
4. **Command to launch**: `
|
|
32
|
-
5. **Arguments**: Click `+ Add argument` and paste exactly:
|
|
33
|
-
|
|
31
|
+
4. **Command to launch**: `npx`
|
|
32
|
+
5. **Arguments**: Click `+ Add argument` twice and paste exactly:
|
|
33
|
+
- First argument: `-y`
|
|
34
|
+
- Second argument: `@igor-olikh/openspec-mcp-server`
|
|
34
35
|
6. **Working directory**: Leave this blank! (This allows Codex to dynamically use OpenSpec inside whichever project you currently have open).
|
|
35
36
|
7. Save it!
|
|
36
37
|
|
|
@@ -44,9 +45,10 @@ If you prefer using the Claude Desktop application:
|
|
|
44
45
|
{
|
|
45
46
|
"mcpServers": {
|
|
46
47
|
"openspec": {
|
|
47
|
-
"command": "
|
|
48
|
+
"command": "npx",
|
|
48
49
|
"args": [
|
|
49
|
-
"
|
|
50
|
+
"-y",
|
|
51
|
+
"@igor-olikh/openspec-mcp-server"
|
|
50
52
|
]
|
|
51
53
|
}
|
|
52
54
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igor-olikh/openspec-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "MCP server
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "An MCP server that connects OpenSpec to AI assistants like Codex, Claude, and Cursor.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/igor-olikh/openspec-mcp-server.git"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [
|
|
12
|
+
"mcp",
|
|
13
|
+
"mcp-server",
|
|
14
|
+
"openspec",
|
|
15
|
+
"ai",
|
|
16
|
+
"codex",
|
|
17
|
+
"claude",
|
|
18
|
+
"cursor",
|
|
19
|
+
"fission"
|
|
20
|
+
],
|
|
21
|
+
"author": "Igor Olikh",
|
|
22
|
+
"license": "MIT",
|
|
7
23
|
"bin": {
|
|
8
24
|
"openspec-mcp-server": "dist/index.js"
|
|
9
25
|
},
|