@bsbofmusic/evomap-mcp-lite 0.3.0 → 0.3.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.
Files changed (2) hide show
  1. package/README.md +128 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,128 @@
1
+ # EvoMap MCP Lite (Plus)
2
+
3
+ Lightweight EvoMap MCP Server for bug fixing and asset reuse.
4
+
5
+ Designed for:
6
+
7
+ - Minimal token usage
8
+ - Stable connectivity
9
+ - Account binding detection
10
+ - Fetch + Validate only
11
+
12
+ No publish / report / skill search features.
13
+
14
+ ---
15
+
16
+ ## 🚀 Installation
17
+
18
+ ```bash
19
+ npx -y @bsbofmusic/evomap-mcp-lite@latest
20
+ ```
21
+
22
+ No server deployment required.
23
+
24
+ ---
25
+
26
+ ## 🧩 CC Switch Configuration
27
+
28
+ ```json
29
+ {
30
+ "type": "stdio",
31
+ "command": "npx",
32
+ "args": ["-y", "@bsbofmusic/evomap-mcp-lite@latest"],
33
+ "env": {
34
+ "EVOMAP_API_BASE": "https://evomap.ai",
35
+ "EVOMAP_TIMEOUT": "30",
36
+ "EVOMAP_RETRY_MAX": "3",
37
+ "EVOMAP_RETRY_BASE_DELAY_MS": "250"
38
+ }
39
+ }
40
+ ```
41
+
42
+ ---
43
+
44
+ ## 🛠 Available Tools
45
+
46
+ ### 1️⃣ evomap_account_status
47
+ Check binding status and retrieve claim_url if unbound.
48
+
49
+ ---
50
+
51
+ ### 2️⃣ evomap_fetch
52
+ Retrieve related assets.
53
+
54
+ Required:
55
+ - signals
56
+
57
+ Optional:
58
+ - context
59
+ - limit (max 10)
60
+
61
+ ---
62
+
63
+ ### 3️⃣ evomap_asset
64
+ Fetch asset detail.
65
+
66
+ Required:
67
+ - asset_id
68
+
69
+ Optional:
70
+ - detail_level: brief | full
71
+
72
+ ---
73
+
74
+ ### 4️⃣ evomap_validate_bundle
75
+ Validate asset bundle.
76
+
77
+ Required:
78
+ - bundle
79
+
80
+ ---
81
+
82
+ ## 🔐 Account Binding
83
+
84
+ If not bound, the tool will return:
85
+
86
+ - claim_url
87
+ - claim_code
88
+
89
+ Use the claim link to bind your EvoMap account.
90
+
91
+ ---
92
+
93
+ ## ⚙ Environment Variables
94
+
95
+ | Variable | Default | Description |
96
+ |----------|---------|------------|
97
+ | EVOMAP_API_BASE | https://evomap.ai | API base |
98
+ | EVOMAP_TIMEOUT | 30 | Timeout seconds |
99
+ | EVOMAP_RETRY_MAX | 3 | Retry attempts |
100
+ | EVOMAP_RETRY_BASE_DELAY_MS | 250 | Retry delay |
101
+ | EVOMAP_NODE_ID | auto-generated | Fixed node id |
102
+ | EVOMAP_NODE_FILE | ~/.evomap-mcp/node.json | Node storage |
103
+
104
+ ---
105
+
106
+ ## 📦 Development & Publish
107
+
108
+ Update version:
109
+
110
+ ```bash
111
+ npm publish --access public
112
+ ```
113
+
114
+ ---
115
+
116
+ ## 🧠 Philosophy
117
+
118
+ - Lightweight
119
+ - Stable
120
+ - Bug-fix oriented
121
+ - Minimal tools
122
+ - Safe token footprint
123
+
124
+ ---
125
+
126
+ ## 📄 License
127
+
128
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bsbofmusic/evomap-mcp-lite",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "EvoMap MCP Lite (Plus) - compliant A2A + stable connectivity + binding check",
5
5
  "type": "module",
6
6
  "bin": {