Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I've tried both node and docker instances. All vars are set correctly (as far as I can tell).
Server comes up with:
NODE:
node build/index.js
INFO [14:20:50.172] (418755): Initializing server with transport mode:
WARN [14:20:50.172] (418755): Starting GitLab MCP Server with Streamable HTTP transport
INFO [14:20:50.179] (418755): GitLab MCP Server running with Streamable HTTP transport
INFO [14:20:50.179] (418755): Endpoint: http://0.0.0.0:3002/mcp
Or DOCKER:
INFO [18:34:35.499] (1): Initializing server with transport mode:
WARN [18:34:35.499] (1): Starting GitLab MCP Server with Streamable HTTP transport
INFO [18:34:35.506] (1): GitLab MCP Server running with Streamable HTTP transport
INFO [18:34:35.506] (1): Endpoint: http://0.0.0.0:3002/mcp
Then when trying to initialize (or any other command):
curl -X POST http://localhost:3333/mcp -H "Content-Type: application/json" -H "Accept: application/json, text/event-stream" -d '{
"jsonrpc": "2.0",
"method": "initialize",
"params": { "capabilities": {} },
"id": 1
}'
{"jsonrpc":"2.0","error":{"code":-32000,"message":"Bad Request: Server not initialized"},"id":null}
The health check works:
curl http://localhost:3333/health
{"status":"healthy","version":"1.0.76","transport":"streamable-http","activeSessions":0}
there's no other debug messages, so it's virtually impossible to determine what's wrong
Beta Was this translation helpful? Give feedback.
All reactions