@usewhisper/mcp-server 0.2.3 → 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 CHANGED
@@ -16,17 +16,9 @@ npm install -g @usewhisper/mcp-server
16
16
 
17
17
  ## Setup
18
18
 
19
- ### 1. Get Environment Variables
19
+ ### 1. Get Your API Key
20
20
 
21
- You'll need these environment variables:
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
- "DATABASE_URL": "postgresql://user:pass@host/db",
45
- "OPENAI_API_KEY": "sk-...",
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 directly to your Whisper Context database using:
128
- - **PostgreSQL + pgvector** for vector search
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
- | `DATABASE_URL` | Yes | PostgreSQL connection string |
137
- | `OPENAI_API_KEY` | Yes | OpenAI API key for embeddings |
138
- | `WHISPER_ORG_ID` | Yes | Your Whisper organization ID |
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 `DATABASE_URL` is correct and accessible
152
- - Ensure your `OPENAI_API_KEY` is valid
153
- - Check that `WHISPER_ORG_ID` matches your organization
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