storkai 1.0.3 → 1.0.4

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 (2) hide show
  1. package/README.md +24 -23
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,50 +1,50 @@
1
1
  # Stork MCP — The MCP Server for MCP Servers
2
2
 
3
- Search, discover, evaluate, and configure MCP servers from inside your IDE. Install once, find any MCP server instantly.
3
+ Search, discover, evaluate, and configure MCP servers from inside your IDE. One line of config. No install needed.
4
4
 
5
5
  **[stork.ai/mcp](https://www.stork.ai/mcp)**
6
6
 
7
- ## Add to your MCP client in 30 seconds
7
+ ## Quick Start (Recommended)
8
8
 
9
- ### Cursor
10
-
11
- Add to `~/.cursor/mcp.json`:
9
+ Add one line to your MCP config. Works with Cursor, Claude Desktop, VS Code, Zed, and any client that supports remote MCP servers.
12
10
 
13
11
  ```json
14
12
  {
15
13
  "mcpServers": {
16
14
  "stork": {
17
- "command": "npx",
18
- "args": ["-y", "storkai"]
15
+ "url": "https://mcp.stork.ai/mcp"
19
16
  }
20
17
  }
21
18
  }
22
19
  ```
23
20
 
24
- ### Claude Desktop
21
+ ### Claude Code
22
+
23
+ ```bash
24
+ claude mcp add stork --url https://mcp.stork.ai/mcp
25
+ ```
26
+
27
+ ## Alternative: Local Install (offline use)
28
+
29
+ If you prefer running locally:
30
+
31
+ ```bash
32
+ npm install -g storkai
33
+ ```
25
34
 
26
- Add to `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) or `%APPDATA%\Claude\claude_desktop_config.json` (Windows):
35
+ Then add to your MCP config:
27
36
 
28
37
  ```json
29
38
  {
30
39
  "mcpServers": {
31
40
  "stork": {
32
- "command": "npx",
33
- "args": ["-y", "storkai"]
41
+ "command": "storkai"
34
42
  }
35
43
  }
36
44
  }
37
45
  ```
38
46
 
39
- ### Claude Code
40
-
41
- ```bash
42
- claude mcp add stork -- npx -y storkai
43
- ```
44
-
45
- ### VS Code
46
-
47
- Add to `~/.vscode/mcp.json`:
47
+ Or use npx (auto-updates):
48
48
 
49
49
  ```json
50
50
  {
@@ -59,7 +59,7 @@ Add to `~/.vscode/mcp.json`:
59
59
 
60
60
  ## What can you do with Stork?
61
61
 
62
- Once installed, just ask your AI assistant:
62
+ Once connected, just ask your AI assistant:
63
63
 
64
64
  - "Find me an MCP server that can manage Jira tickets"
65
65
  - "Show me MCP servers for database queries"
@@ -80,9 +80,10 @@ Once installed, just ask your AI assistant:
80
80
 
81
81
  ## Why Stork?
82
82
 
83
- - **One install, all MCP servers**: Search thousands of MCP servers without leaving your IDE
84
- - **Ready-to-paste configs**: Get correct JSON config for Cursor, Claude, VS Code, and more
83
+ - **One line, no install**: Remote URL works instantly - no npm, no download
84
+ - **14,000+ MCP servers**: Indexed from the Official MCP Registry, Smithery, and more
85
85
  - **Trust signals**: See maintenance status, GitHub stars, downloads, and security scores
86
+ - **Ready-to-paste configs**: Get correct JSON config for any IDE
86
87
  - **Tool inventory**: Know exactly what tools each server exposes before installing
87
88
 
88
89
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "storkai",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "The MCP server for MCP servers. Search, discover, and configure MCP servers from inside your IDE.",
5
5
  "bin": {
6
6
  "storkai": "bin/storkai.js"