M6: implement ITWorx MCP Hub publication
Four read-only, service-token-protected MCP provider endpoints (operations summary, attention vehicles, vehicle details, knowledge search facade). Shared-secret auth reusing the M4 callback pattern. Service-request audit trail for every call. Extracted shared operations-summary logic out of the dashboard router to avoid duplicating retrieval logic. 66 backend tests passing, ruff clean. Verified all four endpoints and audit trail directly via curl against the live stack (no live MCP Hub instance available in this environment).
This commit is contained in:
@@ -13,6 +13,7 @@ from app.api.routers import (
|
||||
demo,
|
||||
integrations,
|
||||
knowledge,
|
||||
mcp_integrations,
|
||||
vehicles,
|
||||
workflows,
|
||||
)
|
||||
@@ -86,3 +87,4 @@ app.include_router(data_quality.router)
|
||||
app.include_router(workflows.router)
|
||||
app.include_router(integrations.router)
|
||||
app.include_router(knowledge.router)
|
||||
app.include_router(mcp_integrations.router)
|
||||
|
||||
Reference in New Issue
Block a user