Skip to content

Commit 663e2ae

Browse files
committed
MCP Config: Align Knowledge Server Port and Health Check #7425
1 parent dc6ee30 commit 663e2ae

4 files changed

Lines changed: 28 additions & 35 deletions

File tree

.github/ISSUE/epic-architect-ai-tooling-as-mcp.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,10 @@ https://discord.gg/6p8paPq
3434
## Sub-Tasks
3535

3636
### Phase 1: Design & Foundation
37-
- **To Do:** ticket-define-agent-agnostic-mcp-config.md
37+
- **Done:** ticket-define-agent-agnostic-mcp-config.md
3838
- **To Do:** ticket-design-knowledge-mcp-api.md
39-
- **To Do:** ticket-design-memory-mcp-api.md
39+
- **Done:** ticket-design-memory-mcp-api.md
40+
- **Done:** ticket-mcp-config-align-knowledge-server.md
4041

4142
### Phase 2: Implementation
4243
- **To Do:** ticket-implement-knowledge-server-scaffold.md
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
title: 'MCP Config: Align Knowledge Server Port and Health Check'
3+
labels: enhancement, AI, documentation
4+
---
5+
6+
GH ticket id: (will be created later)
7+
8+
**Epic:** Architect AI Tooling as a Model Context Protocol (MCP)
9+
**Phase:** 1
10+
**Assignee:** tobiu
11+
**Status:** Done
12+
13+
## Description
14+
15+
This ticket documents the correction of the `neo-knowledge-base` server definition within the `.github/mcp-servers.json` configuration file.
16+
17+
The initial configuration incorrectly listed the connection port as `3000` and the health check endpoint as `/api/health`. This was inconsistent with the planned architecture (where ChromaDB runs on port `8000`) and with the API conventions established by the `neo-memory-core` server.
18+
19+
The configuration was updated to:
20+
- Set the `port` to `8000`.
21+
- Set the `healthCheck.url` to `http://localhost:8000/api/v2/healthcheck`.
22+
23+
This change ensures that the MCP server configuration accurately reflects the intended architecture and maintains consistency across the defined services.

.github/mcp-servers.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"type": "transport",
88
"connection": {
99
"host": "localhost",
10-
"port": 3000,
10+
"port": 8000,
1111
"protocol": "http"
1212
},
1313
"healthCheck": {
14-
"url": "http://localhost:3000/api/health",
14+
"url": "http://localhost:8000/api/v2/healthcheck",
1515
"method": "GET",
1616
"timeout": 2000
1717
},

.tmp/issue1-dedicated-workers.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)