@pathmode/mcp-server 1.3.1 → 1.4.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 +29 -0
- package/dist/api-client.d.ts.map +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1082 -811
- package/dist/setup.d.ts +12 -0
- package/dist/setup.d.ts.map +1 -0
- package/manifest.json +13 -6
- package/package.json +4 -3
package/dist/setup.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pathmode MCP Setup Command
|
|
3
|
+
*
|
|
4
|
+
* Auto-detects AI tools (Claude Code, Claude Desktop, Cursor, Windsurf)
|
|
5
|
+
* and configures the MCP server with a single command.
|
|
6
|
+
*
|
|
7
|
+
* Usage:
|
|
8
|
+
* npx @pathmode/mcp-server setup pm_live_xxxxx
|
|
9
|
+
*/
|
|
10
|
+
export declare function getSetupArgs(argv?: string[]): string[];
|
|
11
|
+
export declare function isSetupCommand(argv?: string[]): boolean;
|
|
12
|
+
export declare function runSetup(): Promise<void>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"","sourceRoot":"","sources":["file:///Users/jannelammi/code/Pathmode/packages/mcp-server/src/setup.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAiHH,wBAAgB,YAAY,CAAC,IAAI,WAAe,GAAG,MAAM,EAAE,CAG1D;AAED,wBAAgB,cAAc,CAAC,IAAI,WAAe,GAAG,OAAO,CAE3D;AAID,wBAAsB,QAAQ,kBAsJ7B"}
|
package/manifest.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"manifest_version": "0.3",
|
|
3
3
|
"name": "pathmode",
|
|
4
4
|
"display_name": "Pathmode",
|
|
5
|
-
"version": "1.
|
|
5
|
+
"version": "1.4.0",
|
|
6
6
|
"description": "Build structured intent specs through Socratic AI conversation, or connect to your Intent Layer for strategic context and dependency graphs.",
|
|
7
7
|
"long_description": "Pathmode MCP Server includes the Intent Compiler — a zero-config Socratic conversation that helps you build structured intent specs (objectives, outcomes, constraints, edge cases) right in Claude Code. No signup needed. For teams, connect to your Pathmode workspace for dependency graph analysis (critical path, bottlenecks, cycles), workspace strategy context, and governance — so AI agents build the right thing, not just any thing.",
|
|
8
8
|
"author": {
|
|
@@ -12,9 +12,10 @@
|
|
|
12
12
|
"homepage": "https://pathmode.io",
|
|
13
13
|
"repository": {
|
|
14
14
|
"type": "git",
|
|
15
|
-
"url": "https://github.com/pathmodeio/mcp-server"
|
|
15
|
+
"url": "https://github.com/pathmodeio/mcp-server",
|
|
16
|
+
"directory": "packages/mcp-server"
|
|
16
17
|
},
|
|
17
|
-
"documentation": "https://
|
|
18
|
+
"documentation": "https://pathmode.io/playbook",
|
|
18
19
|
"support": "https://github.com/pathmodeio/mcp-server/issues",
|
|
19
20
|
"license": "MIT",
|
|
20
21
|
"icon": "icon.svg",
|
|
@@ -35,7 +36,9 @@
|
|
|
35
36
|
"entry_point": "dist/index.js",
|
|
36
37
|
"mcp_config": {
|
|
37
38
|
"command": "npx",
|
|
38
|
-
"args": [
|
|
39
|
+
"args": [
|
|
40
|
+
"@pathmode/mcp-server"
|
|
41
|
+
],
|
|
39
42
|
"env": {
|
|
40
43
|
"PATHMODE_API_KEY": "${user_config.api_key}"
|
|
41
44
|
}
|
|
@@ -51,11 +54,15 @@
|
|
|
51
54
|
}
|
|
52
55
|
},
|
|
53
56
|
"compatibility": {
|
|
54
|
-
"platforms": [
|
|
57
|
+
"platforms": [
|
|
58
|
+
"darwin",
|
|
59
|
+
"win32",
|
|
60
|
+
"linux"
|
|
61
|
+
],
|
|
55
62
|
"runtimes": {
|
|
56
63
|
"node": ">=18.0.0"
|
|
57
64
|
}
|
|
58
65
|
},
|
|
59
66
|
"tools_generated": true,
|
|
60
67
|
"prompts_generated": true
|
|
61
|
-
}
|
|
68
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pathmode/mcp-server",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"mcpName": "io.github.pathmodeio/mcp-server",
|
|
5
5
|
"description": "Pathmode MCP Server — Build structured intent specs through Socratic AI conversation (zero-config), or connect to your Intent Layer for strategic context, dependency graphs, and implementation prompts.",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -40,7 +40,8 @@
|
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|
|
42
42
|
"type": "git",
|
|
43
|
-
"url": "git+https://github.com/pathmodeio/mcp-server.git"
|
|
43
|
+
"url": "git+https://github.com/pathmodeio/mcp-server.git",
|
|
44
|
+
"directory": "packages/mcp-server"
|
|
44
45
|
},
|
|
45
46
|
"homepage": "https://pathmode.io",
|
|
46
47
|
"dependencies": {
|
|
@@ -54,4 +55,4 @@
|
|
|
54
55
|
"ts-node": "^10.9.2",
|
|
55
56
|
"typescript": "^5.9.3"
|
|
56
57
|
}
|
|
57
|
-
}
|
|
58
|
+
}
|