Frontmatter
| id | 7425 |
| title | MCP Config: Align Knowledge Server Port and Health Check |
| state | Closed |
| labels | documentationenhancementai |
| assignees | tobiu |
| createdAt | Oct 9, 2025, 12:25 PM |
| updatedAt | Oct 9, 2025, 12:28 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7425 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | 7399 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Oct 9, 2025, 12:28 PM |
This ticket documents the correction of the
neo-knowledge-baseserver definition within the.github/mcp-servers.jsonconfiguration file.The initial configuration incorrectly listed the connection port as
3000and the health check endpoint as/api/health. This was inconsistent with the planned architecture (where ChromaDB runs on port8000) and with the API conventions established by theneo-memory-coreserver.The configuration was updated to:
portto8000.healthCheck.urltohttp://localhost:8000/api/v2/healthcheck.This change ensures that the MCP server configuration accurately reflects the intended architecture and maintains consistency across the defined services.