@lousy-agents/mcp 4.0.1 → 5.0.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 +34 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# @lousy-agents/mcp
|
|
2
|
+
|
|
3
|
+
Model Context Protocol (MCP) server for Lousy Agents.
|
|
4
|
+
|
|
5
|
+
Use this package when you want MCP clients such as VS Code or hosted GitHub Copilot to call Lousy Agents workflow, instruction, and environment-analysis tools.
|
|
6
|
+
|
|
7
|
+
## Quick Start
|
|
8
|
+
|
|
9
|
+
Run the published MCP server without installing it permanently:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx -y -p @lousy-agents/mcp lousy-agents-mcp
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## VS Code
|
|
16
|
+
|
|
17
|
+
Add the server to `.vscode/mcp.json`:
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"servers": {
|
|
22
|
+
"lousy-agents": {
|
|
23
|
+
"type": "stdio",
|
|
24
|
+
"command": "npx",
|
|
25
|
+
"args": ["-y", "-p", "@lousy-agents/mcp", "lousy-agents-mcp"]
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Documentation
|
|
32
|
+
|
|
33
|
+
- Project overview: [README](https://github.com/zpratt/lousy-agents#readme)
|
|
34
|
+
- MCP server guide: [`docs/mcp-server.md`](https://github.com/zpratt/lousy-agents/blob/main/docs/mcp-server.md)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lousy-agents/mcp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "MCP server for lousy-agents - provides AI coding assistant tools via the Model Context Protocol",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"bugs": {
|
|
14
14
|
"url": "https://github.com/zpratt/lousy-agents/issues"
|
|
15
15
|
},
|
|
16
|
-
"homepage": "https://github.com/zpratt/lousy-agents#readme",
|
|
16
|
+
"homepage": "https://github.com/zpratt/lousy-agents/tree/main/packages/mcp#readme",
|
|
17
17
|
"keywords": [
|
|
18
18
|
"mcp",
|
|
19
19
|
"model-context-protocol",
|