-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
60 lines (60 loc) · 1.8 KB
/
server.json
File metadata and controls
60 lines (60 loc) · 1.8 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
58
59
60
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.eaisdevelopment/cogent",
"title": "Cogent Bridge from Essential AI Solutions (essentialai.uk)",
"description": "MCP bridge for inter-session communication between Claude Code instances",
"version": "3.0.4",
"repository": {
"url": "https://github.com/eaisdevelopment/cogent",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "@essentialai/cogent-bridge",
"version": "3.0.4",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "COGENT_STATE_PATH",
"description": "Directory for state file and logs",
"default": "~/.cogent",
"isRequired": false
},
{
"name": "COGENT_TIMEOUT_MS",
"description": "CLI subprocess timeout in milliseconds",
"default": "120000",
"isRequired": false
},
{
"name": "COGENT_CHAR_LIMIT",
"description": "Max characters in CLI message (0 = unlimited)",
"default": "0",
"isRequired": false
},
{
"name": "COGENT_LOG_LEVEL",
"description": "Log verbosity: debug, info, warn, error",
"default": "info",
"isRequired": false
},
{
"name": "COGENT_CLAUDE_PATH",
"description": "Path to the claude CLI executable",
"default": "claude",
"isRequired": false
},
{
"name": "COGENT_STALE_TIMEOUT_MS",
"description": "Time in ms before a peer is flagged as stale (0 = disabled)",
"default": "1800000",
"isRequired": false
}
]
}
]
}