@standardbeagle/slop-mcp 0.12.0 → 0.12.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
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
# slop-mcp
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@standardbeagle/slop-mcp)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
|
|
6
|
+
MCP orchestrator that aggregates multiple Model Context Protocol servers behind 8 meta-tools. Connect any number of MCPs without bloating your agent's context window.
|
|
7
|
+
|
|
8
|
+
```
|
|
9
|
+
Without slop-mcp: 50 MCPs x 20 tools = 1,000 tool definitions in context
|
|
10
|
+
With slop-mcp: 50 MCPs x 20 tools = 8 tool definitions in context
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Install
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npx @standardbeagle/slop-mcp serve
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
Or install globally:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install -g @standardbeagle/slop-mcp
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Also available via [PyPI](https://pypi.org/project/slop-mcp/) (`uvx slop-mcp`), [Go](https://pkg.go.dev/github.com/standardbeagle/slop-mcp), and [binary releases](https://github.com/standardbeagle/slop-mcp/releases).
|
|
26
|
+
|
|
27
|
+
## Configure
|
|
28
|
+
|
|
29
|
+
Add to Claude Desktop:
|
|
30
|
+
|
|
31
|
+
```json
|
|
32
|
+
{
|
|
33
|
+
"mcpServers": {
|
|
34
|
+
"slop": {
|
|
35
|
+
"command": "npx",
|
|
36
|
+
"args": ["-y", "@standardbeagle/slop-mcp", "serve"]
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Add to Claude Code:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
claude mcp add slop-mcp -- npx -y @standardbeagle/slop-mcp serve
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
**Windows users:** Claude Code on Windows may corrupt the scoped package name. Use `cmd /c` to wrap the npx call:
|
|
49
|
+
|
|
50
|
+
```json
|
|
51
|
+
{
|
|
52
|
+
"mcpServers": {
|
|
53
|
+
"slop": {
|
|
54
|
+
"command": "cmd",
|
|
55
|
+
"args": ["/c", "npx", "-y", "@standardbeagle/slop-mcp@latest", "serve"]
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
Define MCP servers in `.slop-mcp.kdl`:
|
|
62
|
+
|
|
63
|
+
```kdl
|
|
64
|
+
mcp "filesystem" {
|
|
65
|
+
command "npx" "-y" "@anthropic/mcp-filesystem"
|
|
66
|
+
args "/path/to/dir"
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
mcp "github" {
|
|
70
|
+
transport "sse"
|
|
71
|
+
url "https://mcp.github.com/sse"
|
|
72
|
+
}
|
|
73
|
+
```
|
|
74
|
+
|
|
75
|
+
## The 8 Meta-Tools
|
|
76
|
+
|
|
77
|
+
| Tool | Purpose |
|
|
78
|
+
|------|---------|
|
|
79
|
+
| `search_tools` | Fuzzy search across all connected MCP tools |
|
|
80
|
+
| `execute_tool` | Run any tool on any connected MCP |
|
|
81
|
+
| `get_metadata` | Inspect tool schemas and MCP capabilities |
|
|
82
|
+
| `run_slop` | Execute multi-tool scripts without round-trips |
|
|
83
|
+
| `manage_mcps` | Add or remove MCP servers at runtime |
|
|
84
|
+
| `auth_mcp` | OAuth authentication for MCPs that need it |
|
|
85
|
+
| `slop_reference` | Browse SLOP built-in functions |
|
|
86
|
+
| `slop_help` | Get detailed help for a SLOP function |
|
|
87
|
+
|
|
88
|
+
## Features
|
|
89
|
+
|
|
90
|
+
- **Progressive discovery** — agents find tools via `search_tools`, not by loading everything upfront
|
|
91
|
+
- **SLOP scripting** — chain tool calls and process results in a single `run_slop` call
|
|
92
|
+
- **Lazy connections** — MCP servers connect asynchronously with tool metadata caching
|
|
93
|
+
- **Persistent memory** — disk-backed `mem_save`/`mem_load`/`mem_search` across sessions
|
|
94
|
+
- **Three-tier config** — project-local > project > user config merging with KDL
|
|
95
|
+
- **OAuth support** — browser-based auth for MCPs like Figma, GitHub, Linear
|
|
96
|
+
- **All transports** — stdio, SSE, and streamable HTTP
|
|
97
|
+
|
|
98
|
+
## Documentation
|
|
99
|
+
|
|
100
|
+
**[standardbeagle.github.io/slop-mcp](https://standardbeagle.github.io/slop-mcp/)**
|
|
101
|
+
|
|
102
|
+
## License
|
|
103
|
+
|
|
104
|
+
MIT
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@standardbeagle/slop-mcp",
|
|
3
|
-
"version": "0.12.
|
|
4
|
-
"description": "MCP
|
|
3
|
+
"version": "0.12.1",
|
|
4
|
+
"description": "MCP orchestrator — connect unlimited Model Context Protocol servers through 8 meta-tools. Progressive tool discovery keeps your AI agent's context window small.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"slop-mcp": "bin.js"
|
|
@@ -15,19 +15,29 @@
|
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"mcp",
|
|
18
|
+
"mcp-server",
|
|
19
|
+
"mcp-orchestrator",
|
|
18
20
|
"model-context-protocol",
|
|
19
21
|
"ai",
|
|
22
|
+
"ai-agent",
|
|
23
|
+
"ai-tools",
|
|
20
24
|
"llm",
|
|
21
|
-
"
|
|
25
|
+
"tool-orchestration",
|
|
26
|
+
"context-window",
|
|
22
27
|
"anthropic",
|
|
23
|
-
"claude"
|
|
28
|
+
"claude",
|
|
29
|
+
"claude-code",
|
|
30
|
+
"claude-desktop",
|
|
31
|
+
"cursor",
|
|
32
|
+
"copilot",
|
|
33
|
+
"gemini"
|
|
24
34
|
],
|
|
25
35
|
"author": "StandardBeagle",
|
|
26
36
|
"license": "MIT",
|
|
27
37
|
"bugs": {
|
|
28
38
|
"url": "https://github.com/standardbeagle/slop-mcp/issues"
|
|
29
39
|
},
|
|
30
|
-
"homepage": "https://github.
|
|
40
|
+
"homepage": "https://standardbeagle.github.io/slop-mcp/",
|
|
31
41
|
"engines": {
|
|
32
42
|
"node": ">=16"
|
|
33
43
|
},
|
|
@@ -35,6 +45,7 @@
|
|
|
35
45
|
"bin.js",
|
|
36
46
|
"index.js",
|
|
37
47
|
"install.js",
|
|
38
|
-
"binaries/*"
|
|
48
|
+
"binaries/*",
|
|
49
|
+
"README.md"
|
|
39
50
|
]
|
|
40
51
|
}
|