Skip to content

Commit 96e9759

Browse files
committed
Update spicedb mcp server with http transport info
1 parent 1ddd815 commit 96e9759

File tree

1 file changed

+11
-20
lines changed

1 file changed

+11
-20
lines changed

pages/mcp/authzed/spicedb-dev-mcp-server.mdx

Lines changed: 11 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -35,41 +35,32 @@ Start the development server:
3535
zed mcp run
3636
```
3737

38-
The server starts on `http://localhost:9999/sse` with an empty in-memory SpiceDB instance.
38+
The server starts on `http://localhost:9999/mcp` with an empty in-memory SpiceDB instance.
3939

4040
**Important**: The server runs in-memory only. All schemas and relationships are lost when you stop the server.
4141

4242
## Connecting Clients
4343

44-
The SpiceDB Dev MCP Server uses SSE (Server-Sent Events) transport.
45-
4644
### Claude Code
4745

48-
Recommended for active development:
46+
To use with Claude Code, run `zed mcp run` to start the SpiceDB Dev MCP server and then run the following to add the server to your Claude Code integrations:
4947

5048
```bash
51-
# Add the server
52-
claude mcp add --transport sse spicedb http://localhost:9999/sse
53-
54-
# Start developing
55-
claude
49+
claude mcp add --transport http spicedb http://localhost:9999/mcp
5650
```
5751

58-
### Codex from OpenAI
52+
Then start developing:
5953

60-
Configure Codex to connect to the SSE endpoint:
61-
```
62-
http://localhost:9999/sse
54+
```bash
55+
claude
6356
```
6457

65-
See [Codex documentation](#) for SSE transport configuration.
66-
6758
### Other Clients
6859

69-
For MCP clients supporting SSE transport, configure:
60+
For MCP clients supporting HTTP transport, configure:
7061
```
71-
Transport: SSE
72-
URL: http://localhost:9999/sse
62+
Transport: HTTP
63+
URL: http://localhost:9999/mcp
7364
```
7465

7566
## Development Workflow
@@ -226,8 +217,8 @@ netstat -an | findstr 9999
226217
### Client Connection Fails
227218

228219
- Verify server is running: `zed mcp run` should be active
229-
- Confirm URL is `http://localhost:9999/sse`
230-
- Check client supports SSE transport
220+
- Confirm URL is `http://localhost:9999/mcp`
221+
- Check client supports HTTP transport
231222
- Ensure localhost is not blocked by firewall
232223

233224
### Schema Errors

0 commit comments

Comments
 (0)