@slorenzot/memento-mcp-server 0.2.0 → 0.2.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 (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -34,10 +34,10 @@ const server = new MCPServer('./data/memento.db');
34
34
  ### Shell/Bun
35
35
  ```bash
36
36
  # Ejecutar servidor MCP (usualmente llamado por clientes MCP)
37
- bunx @slorenzot/memento-mcp
37
+ npm run --package @slorenzot/memento-mcp-server start
38
38
 
39
- # O directamente con bun
40
- bun run node_modules/@slorenzot/memento-mcp-server/dist/index.js
39
+ # O usando npx
40
+ npx -p @slorenzot/memento-mcp-server node mcp.js
41
41
  ```
42
42
 
43
43
  ## 🔧 API Esencial
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slorenzot/memento-mcp-server",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "MCP server implementation for Memento",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -8,6 +8,7 @@
8
8
  "dev": "bun run src/index.ts",
9
9
  "build": "bun tsc --declaration --declarationMap --outDir ./dist",
10
10
  "start": "node mcp.js",
11
+ "start:full": "node ./mcp.js",
11
12
  "test": "bun test",
12
13
  "typecheck": "bun tsc --noEmit"
13
14
  },