subgraph-registry-mcp 0.3.1 → 0.4.1
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 +5 -1
- package/data/registry.db +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -118,6 +118,8 @@ All values are log-scaled and capped at 1.0. A 0.5 penalty is applied if the sub
|
|
|
118
118
|
|
|
119
119
|
The registry is available as an MCP server with **dual transport** — stdio for local clients and SSE/HTTP for remote agents.
|
|
120
120
|
|
|
121
|
+
> The shipped server is the Node implementation in [`src/index.js`](src/index.js); that's what `npx subgraph-registry-mcp` runs and what's published to npm. A Python equivalent in [`python/mcp_server.py`](python/mcp_server.py) is kept for local development against the same SQLite database — bug fixes and new tools should land in the Node version first.
|
|
122
|
+
|
|
121
123
|
**4 tools:**
|
|
122
124
|
- **search_subgraphs** — filter by domain, network, protocol type, entity, or keyword
|
|
123
125
|
- **recommend_subgraph** — natural language goal to best subgraphs
|
|
@@ -225,9 +227,11 @@ registry.py --- builds SQLite + indices
|
|
|
225
227
|
├── generate_docs.py SVG charts + category .md files
|
|
226
228
|
└── scheduler.py --- weekly incremental sync
|
|
227
229
|
|
|
228
|
-
MCP Server (src/index.js)
|
|
230
|
+
MCP Server (src/index.js, published to npm)
|
|
229
231
|
├── stdio ←── Claude Desktop / Claude Code
|
|
230
232
|
└── SSE ←── OpenClaw / remote agents (:3848)
|
|
233
|
+
|
|
234
|
+
python/mcp_server.py — local-dev MCP server hitting the same SQLite DB
|
|
231
235
|
```
|
|
232
236
|
|
|
233
237
|
## Quick Start (Local Build)
|
package/data/registry.db
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "subgraph-registry-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"mcpName": "io.github.PaulieB14/subgraph-registry-mcp",
|
|
5
|
-
"description": "MCP server for agent-friendly subgraph discovery on The Graph Network. 14,
|
|
5
|
+
"description": "MCP server for agent-friendly subgraph discovery on The Graph Network. 14,733 classified subgraphs with query hints with domain, protocol type, and reliability scoring.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
8
|
"subgraph-registry-mcp": "src/index.js"
|