@prom.codes/context-mcp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +28 -0
- package/dist/bin.js +7828 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# @prom.codes/context-mcp
|
|
2
|
+
|
|
3
|
+
Prometheus Context Engine — local-first codebase indexing & retrieval as an MCP server (stdio).
|
|
4
|
+
|
|
5
|
+
## Quick start
|
|
6
|
+
|
|
7
|
+
```jsonc
|
|
8
|
+
// Claude Desktop / Cursor MCP config
|
|
9
|
+
{
|
|
10
|
+
"mcpServers": {
|
|
11
|
+
"prometheus": {
|
|
12
|
+
"command": "npx",
|
|
13
|
+
"args": ["-y", "@prom.codes/context-mcp@latest"],
|
|
14
|
+
"env": {
|
|
15
|
+
"PROMETHEUS_API_KEY": "prom_live_…",
|
|
16
|
+
"PROMETHEUS_WORKSPACE_ROOT": "/absolute/path/to/your/repo"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
With a `PROMETHEUS_API_KEY` the server runs in managed mode: it indexes
|
|
24
|
+
your workspace into a local SQLite database (`~/.prometheus/<hash>.db`)
|
|
25
|
+
and embeds via the Prometheus API. Your code never leaves your machine —
|
|
26
|
+
only embedding text transits to the API.
|
|
27
|
+
|
|
28
|
+
Docs: https://prom.codes/docs
|