-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
57 lines (57 loc) · 1.87 KB
/
Copy pathserver.json
File metadata and controls
57 lines (57 loc) · 1.87 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
52
53
54
55
56
57
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.intent-driven-software/idf-mcp",
"description": "Turn an IDF domain into an MCP server with invariants and role scopes in every tool description.",
"repository": {
"url": "https://github.com/intent-driven-software/idf-mcp",
"source": "github"
},
"version": "1.0.2",
"packages": [
{
"registryType": "npm",
"identifier": "@intent-driven/mcp-server",
"version": "1.0.2",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "IDF_SERVER",
"description": "Base URL of the IDF host runtime (e.g. http://localhost:3001).",
"isRequired": true,
"format": "string",
"isSecret": false
},
{
"name": "IDF_DOMAIN",
"description": "IDF domain to expose as MCP tools (e.g. invest, booking, planning).",
"isRequired": true,
"format": "string",
"isSecret": false
},
{
"name": "IDF_BOOTSTRAP",
"description": "Set to 0 if the host runtime already bootstrapped the domain; 1 (default) to bootstrap from IDF_ONTOLOGY_PATH on first connection.",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "IDF_ONTOLOGY_PATH",
"description": "Filesystem path to the domain ontology module (only used when IDF_BOOTSTRAP=1).",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "IDF_AUTH_TOKEN",
"description": "Optional bearer token forwarded to the host runtime as the agent's role credential.",
"isRequired": false,
"format": "string",
"isSecret": true
}
]
}
]
}