-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
46 lines (46 loc) · 1.6 KB
/
Copy pathserver.json
File metadata and controls
46 lines (46 loc) · 1.6 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.AkashGoenka/coldstart",
"title": "coldstart",
"description": "Codebase memory for AI agents: an AST index plus agent-written notes that self-stale.",
"repository": {
"url": "https://github.com/AkashGoenka/coldstart",
"source": "github"
},
"version": "2.3.2",
"websiteUrl": "https://coldstartmcp.dev/",
"icons": [
{
"src": "https://coldstartmcp.dev/logo.svg",
"mimeType": "image/svg+xml",
"sizes": ["any"]
}
],
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@cstart/coldstart",
"version": "2.3.2",
"transport": {
"type": "stdio"
}
}
],
"_meta": {
"io.modelcontextprotocol.registry/publisher-provided": {
"setup": {
"install": "npm i -g @cstart/coldstart",
"thenRun": "coldstart init",
"runIn": "the repository root, once",
"why": "The MCP server exposes all eight tools without it. `init` additionally wires the hooks that capture notes automatically when a task ends and surface matching notes when a prompt arrives — without it the notebook stays empty unless the agent calls kb_write itself.",
"docs": "https://coldstartmcp.dev/docs"
},
"interfaces": ["cli", "mcp"],
"primaryInterface": "cli",
"tools": ["find", "gs", "kb_search", "kb_lookup", "kb_write", "kb_status", "kb_repair", "kb_repair_aliases"],
"requiresApiKey": false,
"requiresNetwork": false
}
}
}