@idea-matrix/mcp 0.1.0
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 +63 -0
- package/dist/cli.js +43670 -0
- package/manifest.json +61 -0
- package/package.json +44 -0
package/manifest.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"manifest_version": "0.3",
|
|
3
|
+
"name": "idea-matrix",
|
|
4
|
+
"display_name": "Idea Matrix",
|
|
5
|
+
"version": "0.1.0",
|
|
6
|
+
"description": "Score your project ideas honestly, from Claude. Reads and updates your Idea Matrix file on this computer.",
|
|
7
|
+
"long_description": "Idea Matrix keeps your project ideas in one JSON file that you own. This extension lets Claude read that file, walk you through scoring an idea with the Mom Test rules, record the conversations you have had, and update scores, all against the same Confidence gate as the app. Nothing is sent anywhere except to Claude on your own account.",
|
|
8
|
+
"icon": "icon.png",
|
|
9
|
+
"homepage": "https://ideamatrix.io",
|
|
10
|
+
"documentation": "https://github.com/abcd-ca/idea-matrix/tree/main/packages/mcp",
|
|
11
|
+
"support": "https://github.com/abcd-ca/idea-matrix/issues",
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "Andrew Blair",
|
|
14
|
+
"url": "https://abcd.ca"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"keywords": ["ideas", "prioritization", "project ideas", "mom test", "local-first"],
|
|
18
|
+
"server": {
|
|
19
|
+
"type": "node",
|
|
20
|
+
"entry_point": "dist/cli.js",
|
|
21
|
+
"mcp_config": {
|
|
22
|
+
"command": "node",
|
|
23
|
+
"args": ["${__dirname}/dist/cli.js", "mcp", "--file", "${user_config.matrix_file}"]
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"user_config": {
|
|
27
|
+
"matrix_file": {
|
|
28
|
+
"type": "file",
|
|
29
|
+
"title": "Matrix file",
|
|
30
|
+
"description": "Your ideas file, usually called ideas.ideamatrix.json. Create it in the Idea Matrix app first.",
|
|
31
|
+
"required": true
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"tools": [
|
|
35
|
+
{ "name": "list_ideas", "description": "List ideas with scores, Confidence, Potential and Score." },
|
|
36
|
+
{ "name": "get_idea", "description": "The full record for one idea, including its evidence log." },
|
|
37
|
+
{ "name": "add_idea", "description": "Add a new idea at stage Backlog." },
|
|
38
|
+
{ "name": "update_idea", "description": "Change fields and scores on an idea, subject to the Confidence gate." },
|
|
39
|
+
{ "name": "add_evidence", "description": "Record a conversation in an idea's evidence log." },
|
|
40
|
+
{ "name": "park_idea", "description": "Set an idea aside with a reason." },
|
|
41
|
+
{ "name": "unpark_idea", "description": "Bring a parked idea back." }
|
|
42
|
+
],
|
|
43
|
+
"prompts": [
|
|
44
|
+
{
|
|
45
|
+
"name": "idea_matrix",
|
|
46
|
+
"description": "List my ideas and work on one.",
|
|
47
|
+
"arguments": ["idea"],
|
|
48
|
+
"text": "Show me my idea matrix and help me work on one of the ideas."
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"name": "review_matrix",
|
|
52
|
+
"description": "Review the whole matrix without changing it.",
|
|
53
|
+
"text": "Review my whole idea matrix."
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"compatibility": {
|
|
57
|
+
"claude_desktop": ">=0.10.0",
|
|
58
|
+
"platforms": ["darwin", "win32", "linux"],
|
|
59
|
+
"runtimes": { "node": ">=20.0.0" }
|
|
60
|
+
}
|
|
61
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@idea-matrix/mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Command-line tool and MCP server for Idea Matrix files, so Claude Desktop, Claude Code or a local model can read and score your ideas.",
|
|
5
|
+
"homepage": "https://ideamatrix.io",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/abcd-ca/idea-matrix.git",
|
|
9
|
+
"directory": "packages/mcp"
|
|
10
|
+
},
|
|
11
|
+
"bugs": "https://github.com/abcd-ca/idea-matrix/issues",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"author": "Andrew Blair (https://abcd.ca)",
|
|
14
|
+
"type": "module",
|
|
15
|
+
"bin": {
|
|
16
|
+
"idea-matrix": "./dist/cli.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist/cli.js",
|
|
20
|
+
"manifest.json",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "tsup",
|
|
25
|
+
"dev": "tsx src/cli.ts",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"test": "vitest run",
|
|
28
|
+
"prebundle": "node ../../scripts/icons.mjs",
|
|
29
|
+
"bundle": "npm run build && npx --yes @anthropic-ai/mcpb@2.1.2 pack . dist/idea-matrix.mcpb"
|
|
30
|
+
},
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@idea-matrix/core": "*",
|
|
36
|
+
"@modelcontextprotocol/sdk": "^1.30.0",
|
|
37
|
+
"zod": "^4.1.0",
|
|
38
|
+
"@types/node": "^22",
|
|
39
|
+
"tsup": "^8.5.1",
|
|
40
|
+
"tsx": "^4.20.0",
|
|
41
|
+
"typescript": "^7.0.2",
|
|
42
|
+
"vitest": "^3.2.4"
|
|
43
|
+
}
|
|
44
|
+
}
|