@meowtrix/atproto-mcp 0.1.2 → 0.1.3

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 +2 -5
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -40,11 +40,8 @@ Then configure your MCP client to connect via HTTP:
40
40
 
41
41
  ```json
42
42
  {
43
- "mcpServers": {
44
- "atproto": {
45
- "url": "http://localhost:3001/mcp"
46
- }
47
- }
43
+ "name": "atproto",
44
+ "url": "http://localhost:3001/mcp"
48
45
  }
49
46
  ```
50
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meowtrix/atproto-mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "AT Protocol MCP server — gives AI agents the ability to navigate the AT Protocol",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -27,7 +27,8 @@
27
27
  },
28
28
  "scripts": {
29
29
  "start": "node --import=tsx src/server.ts",
30
- "test": "vitest run"
30
+ "test": "vitest run",
31
+ "publish": "npm publish"
31
32
  },
32
33
  "dependencies": {
33
34
  "@atcute/atproto": "^3.1.10",