@innerstacklabs/neuralingual-mcp 0.3.0 → 0.4.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 +62 -0
- package/dist/cli.js +209 -487
- package/dist/cli.js.map +1 -1
- package/dist/set-file.d.ts +5 -0
- package/dist/set-file.d.ts.map +1 -1
- package/dist/set-file.js +2 -0
- package/dist/set-file.js.map +1 -1
- package/dist/types.d.ts +72 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/user-client.d.ts +15 -2
- package/dist/user-client.d.ts.map +1 -1
- package/dist/user-client.js +46 -3
- package/dist/user-client.js.map +1 -1
- package/dist/user-mcp.js +1 -0
- package/dist/user-mcp.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -72,6 +72,68 @@ neuralingual play <id> --open
|
|
|
72
72
|
|
|
73
73
|
See the [User Guide](docs/USER_GUIDE.md) for detailed usage and examples.
|
|
74
74
|
|
|
75
|
+
## MCP Server (AI Assistant Integration)
|
|
76
|
+
|
|
77
|
+
This package includes an MCP server that lets AI assistants (Claude Code, etc.) manage your Neuralingual library directly.
|
|
78
|
+
|
|
79
|
+
### Setup
|
|
80
|
+
|
|
81
|
+
Add to your `.mcp.json` (Claude Code) or MCP client config:
|
|
82
|
+
|
|
83
|
+
```json
|
|
84
|
+
{
|
|
85
|
+
"mcpServers": {
|
|
86
|
+
"neuralingual": {
|
|
87
|
+
"type": "stdio",
|
|
88
|
+
"command": "npx",
|
|
89
|
+
"args": ["-y", "-p", "@innerstacklabs/neuralingual-mcp", "neuralingual-mcp"]
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
**Prerequisite:** Run `neuralingual login` first to authenticate.
|
|
96
|
+
|
|
97
|
+
### MCP Tools
|
|
98
|
+
|
|
99
|
+
| Tool | Description |
|
|
100
|
+
|---|---|
|
|
101
|
+
| `nl_library` | List all practice sets with title, context, render status |
|
|
102
|
+
| `nl_info` | Full set details — affirmations, render config, share status |
|
|
103
|
+
| `nl_search` | Search sets by keyword |
|
|
104
|
+
| `nl_create` | Create a new set from intent text (costs 1 credit) |
|
|
105
|
+
| `nl_delete` | Delete a practice set |
|
|
106
|
+
| `nl_rename` | Update title and/or emoji |
|
|
107
|
+
| `nl_play` | Download rendered audio to local cache |
|
|
108
|
+
| `nl_credits` | Check credit balance |
|
|
109
|
+
| `nl_voices` | List available voices with accent, gender, tier |
|
|
110
|
+
| `nl_render_configure` | Configure voice, background, pace, duration, context |
|
|
111
|
+
| `nl_render_start` | Start audio rendering |
|
|
112
|
+
| `nl_render_status` | Check render progress |
|
|
113
|
+
| `nl_rerender` | Re-render with current config |
|
|
114
|
+
| `nl_share` / `nl_unshare` | Generate or revoke public share links |
|
|
115
|
+
| `nl_set_export` | Export set as editable YAML |
|
|
116
|
+
| `nl_set_import` | Apply edited YAML back to a set |
|
|
117
|
+
| `nl_sync_affirmations` | Declarative sync — add, update, remove affirmations |
|
|
118
|
+
|
|
119
|
+
### Example (Claude Code)
|
|
120
|
+
|
|
121
|
+
```
|
|
122
|
+
> Create a neuralingual set about being a great father
|
|
123
|
+
|
|
124
|
+
Creating "Present & Intentional Dad" with 30 affirmations...
|
|
125
|
+
Drew on Fred Rogers, Brené Brown, and John Gottman.
|
|
126
|
+
|
|
127
|
+
> Render it with Graham's voice, meditation context, 15 minutes
|
|
128
|
+
|
|
129
|
+
Configured: Meditation · Graham · Acoustic Guitar · 15m
|
|
130
|
+
Rendering... done.
|
|
131
|
+
|
|
132
|
+
> Play it
|
|
133
|
+
|
|
134
|
+
Downloaded to ~/.config/neuralingual/audio/abc123.mp3
|
|
135
|
+
```
|
|
136
|
+
|
|
75
137
|
## License
|
|
76
138
|
|
|
77
139
|
MIT
|