-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
45 lines (45 loc) · 1.51 KB
/
Copy pathserver.json
File metadata and controls
45 lines (45 loc) · 1.51 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.not-so-fat/agent-deck",
"title": "Agent Deck",
"description": "Switch what your agent knows — decks of tools, keys, and self-improving playbooks.",
"version": "1.5.3",
"websiteUrl": "https://github.com/not-so-fat/agent_deck",
"repository": {
"url": "https://github.com/not-so-fat/agent_deck",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@agent-deck/cli",
"version": "1.5.3",
"transport": {
"type": "streamable-http",
"url": "http://127.0.0.1:1110/mcp"
},
"runtimeHint": "Run `npx @agent-deck/cli start` locally, then connect your MCP client to the URL above.",
"environmentVariables": [
{
"name": "AGENT_DECK_PORT",
"description": "Backend API and dashboard port (default 1111; dev repo uses 8000 for API)",
"isRequired": false,
"format": "number"
},
{
"name": "AGENT_DECK_MCP_PORT",
"description": "MCP HTTP endpoint port (default 1110; dev repo uses 3001)",
"isRequired": false,
"format": "number"
},
{
"name": "AGENT_DECK_HOME",
"description": "Data directory for SQLite DB and credential metadata (default ~/.agent-deck)",
"isRequired": false,
"format": "string"
}
]
}
]
}