@anuraghq/neuron-mcp-server 0.1.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.
Files changed (4) hide show
  1. package/README.md +57 -0
  2. package/index.js +43804 -0
  3. package/index.js.map +7 -0
  4. package/package.json +38 -0
package/README.md ADDED
@@ -0,0 +1,57 @@
1
+ # @neuron/mcp-server
2
+
3
+ Neuron Context Engine MCP server — structured memory for Cursor, Claude Desktop, and any MCP client.
4
+
5
+ ## One-command install (customers)
6
+
7
+ Get your credentials from the [Neuron dashboard](https://neuron-azure.vercel.app) → Integrations → MCP.
8
+
9
+ ```bash
10
+ NEXT_PUBLIC_SUPABASE_URL=https://xxx.supabase.co \
11
+ SUPABASE_SERVICE_ROLE_KEY=your-service-role-key \
12
+ NEURON_PROJECT_ID=your-project-uuid \
13
+ npx @neuron/mcp-server init
14
+ ```
15
+
16
+ Restart Cursor. Done.
17
+
18
+ ### Manual config (Cursor / Claude Desktop)
19
+
20
+ Add to `~/.cursor/mcp.json` or Claude's `claude_desktop_config.json`:
21
+
22
+ ```json
23
+ {
24
+ "mcpServers": {
25
+ "neuron": {
26
+ "command": "npx",
27
+ "args": ["-y", "@neuron/mcp-server"],
28
+ "env": {
29
+ "NEXT_PUBLIC_SUPABASE_URL": "https://xxx.supabase.co",
30
+ "SUPABASE_SERVICE_ROLE_KEY": "your-service-role-key",
31
+ "NEURON_PROJECT_ID": "your-project-uuid"
32
+ }
33
+ }
34
+ }
35
+ }
36
+ ```
37
+
38
+ ## Tools
39
+
40
+ `remember_fact`, `remember_decision`, `search_memory`, `get_project_context`, and 12 more.
41
+
42
+ ## Publishing (maintainers)
43
+
44
+ ```bash
45
+ cd packages/mcp-server
46
+ pnpm build:publish
47
+ npm publish --access public
48
+ ```
49
+
50
+ Requires npm org `@neuron` and published workspace deps, or use `build:publish` which bundles everything into a single file.
51
+
52
+ ## Local development
53
+
54
+ ```bash
55
+ pnpm --filter @neuron/mcp-server build
56
+ node packages/mcp-server/dist/index.js
57
+ ```