-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@intent-driven/mcp-server",
"version": "1.0.4",
"mcpName": "io.github.intent-driven-software/idf-mcp",
"description": "Turn any IDF domain into an MCP server (Claude Desktop / Cursor / Zed). Tool descriptions carry domain semantics — invariants, lifecycle, irreversibility, role scopes — so the agent knows what it can do and why before the call, not after.",
"type": "module",
"license": "MIT",
"author": "Ignat Dubovsky",
"homepage": "https://github.com/intent-driven-software/idf-mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/intent-driven-software/idf-mcp.git"
},
"keywords": [
"intent-driven",
"idf",
"mcp",
"model-context-protocol",
"claude-desktop",
"llm-agent"
],
"engines": {
"node": ">=20"
},
"bin": {
"mcp-idf": "bin/mcp-idf.js"
},
"exports": {
".": {
"import": "./src/index.js"
}
},
"main": "./src/index.js",
"files": [
"src",
"bin",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
},
"devDependencies": {
"vitest": "^1.6.0"
}
}