@usewhisper/mcp-server 0.2.3 → 0.3.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 +23 -23
- package/dist/autosubscribe-GHO6YR5A.js +4068 -0
- package/dist/chunk-52VJYCZ7.js +455 -0
- package/dist/chunk-5KBZQHDL.js +189 -0
- package/dist/chunk-7SN3CKDK.js +1076 -0
- package/dist/chunk-EI5CE3EY.js +616 -0
- package/dist/chunk-JO3ORBZD.js +616 -0
- package/dist/chunk-LMEYV4JD.js +368 -0
- package/dist/chunk-MEFLJ4PV.js +8385 -0
- package/dist/chunk-PPGYJJED.js +271 -0
- package/dist/chunk-T7KMSTWP.js +399 -0
- package/dist/chunk-TWEIYHI6.js +399 -0
- package/dist/consolidation-2GCKI4RE.js +220 -0
- package/dist/consolidation-4JOPW6BG.js +220 -0
- package/dist/context-sharing-4ITCNKG4.js +307 -0
- package/dist/context-sharing-GYKLXHZA.js +307 -0
- package/dist/context-sharing-Y6LTZZOF.js +307 -0
- package/dist/cost-optimization-7DVSTL6R.js +307 -0
- package/dist/ingest-7T5FAZNC.js +15 -0
- package/dist/ingest-EBNIE7XB.js +15 -0
- package/dist/ingest-FSHT5BCS.js +15 -0
- package/dist/oracle-3RLQF3DP.js +259 -0
- package/dist/oracle-FKRTQUUG.js +282 -0
- package/dist/search-EG6TYWWW.js +13 -0
- package/dist/search-I22QQA7T.js +13 -0
- package/dist/search-T7H5G6DW.js +13 -0
- package/dist/server.js +813 -1088
- package/package.json +2 -6
package/README.md
CHANGED
|
@@ -16,17 +16,9 @@ npm install -g @usewhisper/mcp-server
|
|
|
16
16
|
|
|
17
17
|
## Setup
|
|
18
18
|
|
|
19
|
-
### 1. Get
|
|
19
|
+
### 1. Get Your API Key
|
|
20
20
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
```env
|
|
24
|
-
DATABASE_URL=your_neon_postgres_url
|
|
25
|
-
OPENAI_API_KEY=your_openai_key
|
|
26
|
-
WHISPER_ORG_ID=your_organization_id
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
Get your Whisper credentials from the [dashboard](https://usewhisper.dev/dashboard).
|
|
21
|
+
Get your Whisper API key from the [dashboard](https://usewhisper.dev/dashboard).
|
|
30
22
|
|
|
31
23
|
### 2. Configure Claude Desktop
|
|
32
24
|
|
|
@@ -41,15 +33,17 @@ Add to your Claude Desktop config file:
|
|
|
41
33
|
"whisper-context": {
|
|
42
34
|
"command": "whisper-context-mcp",
|
|
43
35
|
"env": {
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"WHISPER_ORG_ID": "org_..."
|
|
36
|
+
"WHISPER_API_KEY": "wctx_...",
|
|
37
|
+
"WHISPER_PROJECT": "my-project"
|
|
47
38
|
}
|
|
48
39
|
}
|
|
49
40
|
}
|
|
50
41
|
}
|
|
51
42
|
```
|
|
52
43
|
|
|
44
|
+
**Optional environment variables:**
|
|
45
|
+
- `WHISPER_BASE_URL`: Custom API endpoint (defaults to `https://context.usewhisper.dev`)
|
|
46
|
+
|
|
53
47
|
### 3. Restart Claude Desktop
|
|
54
48
|
|
|
55
49
|
After configuration, restart Claude Desktop. The MCP server will appear in the bottom-right corner.
|
|
@@ -124,18 +118,18 @@ Claude: [Uses list_projects to show all your context projects]
|
|
|
124
118
|
|
|
125
119
|
## Architecture
|
|
126
120
|
|
|
127
|
-
The MCP server connects
|
|
128
|
-
- **
|
|
129
|
-
- **OpenAI Embeddings** for semantic understanding
|
|
121
|
+
The MCP server connects to your Whisper Context API:
|
|
122
|
+
- **Whisper Context API** for semantic search, memory, and knowledge graph
|
|
130
123
|
- **Stdio Transport** for Claude Desktop communication
|
|
124
|
+
- **Zero dependencies** on database or infrastructure
|
|
131
125
|
|
|
132
126
|
## Environment Variables
|
|
133
127
|
|
|
134
128
|
| Variable | Required | Description |
|
|
135
129
|
|----------|----------|-------------|
|
|
136
|
-
| `
|
|
137
|
-
| `
|
|
138
|
-
| `
|
|
130
|
+
| `WHISPER_API_KEY` | Yes | Your Whisper API key (get from dashboard) |
|
|
131
|
+
| `WHISPER_PROJECT` | Optional | Default project name/slug for all operations |
|
|
132
|
+
| `WHISPER_BASE_URL` | Optional | Custom API endpoint (defaults to https://context.usewhisper.dev) |
|
|
139
133
|
|
|
140
134
|
## Troubleshooting
|
|
141
135
|
|
|
@@ -148,15 +142,21 @@ The MCP server connects directly to your Whisper Context database using:
|
|
|
148
142
|
|
|
149
143
|
### Connection errors
|
|
150
144
|
|
|
151
|
-
- Verify your `
|
|
152
|
-
-
|
|
153
|
-
-
|
|
145
|
+
- Verify your `WHISPER_API_KEY` is valid (starts with `wctx_`)
|
|
146
|
+
- Check that you have network connectivity to the API
|
|
147
|
+
- Ensure your API key has the necessary permissions
|
|
148
|
+
|
|
149
|
+
### "Project not found" errors
|
|
150
|
+
|
|
151
|
+
- Make sure your project name/slug is correct
|
|
152
|
+
- Set `WHISPER_PROJECT` in config for a default project
|
|
153
|
+
- Use `list_projects` tool to see all available projects
|
|
154
154
|
|
|
155
155
|
### No results from queries
|
|
156
156
|
|
|
157
157
|
- Make sure your project has data sources connected or documents ingested
|
|
158
158
|
- Verify the project name/slug matches exactly
|
|
159
|
-
- Check that sources have been synced successfully
|
|
159
|
+
- Check that sources have been synced successfully in the dashboard
|
|
160
160
|
|
|
161
161
|
## Links
|
|
162
162
|
|