substreams-search-mcp 1.0.0 → 1.0.2

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +14 -14
  3. package/package.json +1 -1
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 PaulieB14
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Substreams Search MCP Server
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/substreams-search-mcp)](https://www.npmjs.com/package/substreams-search-mcp)
4
+
5
+ <a href="https://glama.ai/mcp/servers/@PaulieB14/substreams-search-mcp-server">
6
+ <img width="380" height="200" src="https://glama.ai/mcp/servers/@PaulieB14/substreams-search-mcp-server/badge" />
7
+ </a>
8
+
3
9
  MCP server that lets AI agents search the [substreams.dev](https://substreams.dev) package registry.
4
10
 
5
11
  ## Tool: `search_substreams`
@@ -12,15 +18,9 @@ MCP server that lets AI agents search the [substreams.dev](https://substreams.de
12
18
 
13
19
  Returns JSON with package name, URL, creator, network, version, published date, and download count.
14
20
 
15
- ## Setup
21
+ ## Quick Start (npx)
16
22
 
17
- ```bash
18
- git clone https://github.com/PaulieB14/substreams-search-mcp.git
19
- cd substreams-search-mcp
20
- python3 -m venv .venv
21
- source .venv/bin/activate
22
- pip install -r requirements.txt
23
- ```
23
+ No installation needed:
24
24
 
25
25
  ### Claude Desktop
26
26
 
@@ -30,8 +30,8 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
30
30
  {
31
31
  "mcpServers": {
32
32
  "substreams-search": {
33
- "command": "/path/to/substreams-search-mcp/.venv/bin/python3",
34
- "args": ["/path/to/substreams-search-mcp/server.py"]
33
+ "command": "npx",
34
+ "args": ["substreams-search-mcp"]
35
35
  }
36
36
  }
37
37
  }
@@ -45,8 +45,8 @@ Add to `~/.cursor/mcp.json`:
45
45
  {
46
46
  "mcpServers": {
47
47
  "substreams-search": {
48
- "command": "/path/to/substreams-search-mcp/.venv/bin/python3",
49
- "args": ["/path/to/substreams-search-mcp/server.py"]
48
+ "command": "npx",
49
+ "args": ["substreams-search-mcp"]
50
50
  }
51
51
  }
52
52
  }
@@ -60,8 +60,8 @@ Add to `~/.claude/mcp.json`:
60
60
  {
61
61
  "mcpServers": {
62
62
  "substreams-search": {
63
- "command": "/path/to/substreams-search-mcp/.venv/bin/python3",
64
- "args": ["/path/to/substreams-search-mcp/server.py"]
63
+ "command": "npx",
64
+ "args": ["substreams-search-mcp"]
65
65
  }
66
66
  }
67
67
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "substreams-search-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server to search the substreams.dev package registry",
5
5
  "type": "module",
6
6
  "bin": {