feat: Add MCP server stubs, development docs, and Docker updates

- Add MCP server skeleton implementations for all 7 planned servers
  (llm-gateway, knowledge-base, git, issues, filesystem, code-analysis, cicd)
- Add comprehensive DEVELOPMENT.md with setup and usage instructions
- Add BACKLOG.md with detailed phase planning
- Update docker-compose.dev.yml with Redis and Celery workers
- Update CLAUDE.md with Syndarix-specific context

Addresses issues #16, #20, #21

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-30 02:13:16 +01:00
parent 2f7124959d
commit 2310c8cdfd
19 changed files with 3060 additions and 2 deletions

View File

@@ -0,0 +1,47 @@
"""
Syndarix CI/CD MCP Server.
Provides CI/CD pipeline management with:
- Gitea Actions integration
- GitHub Actions integration
- Pipeline status monitoring
Phase 5 implementation.
"""
import os
from fastmcp import FastMCP
mcp = FastMCP(
"syndarix-cicd",
description="CI/CD pipeline management",
)
@mcp.tool()
async def get_pipeline_status(project_id: str, run_id: str | None = None) -> dict:
"""Get CI/CD pipeline status."""
return {"status": "not_implemented", "project_id": project_id}
@mcp.tool()
async def trigger_pipeline(project_id: str, workflow: str, ref: str = "main") -> dict:
"""Trigger a CI/CD pipeline."""
return {"status": "not_implemented", "project_id": project_id}
@mcp.tool()
async def list_workflows(project_id: str) -> dict:
"""List available CI/CD workflows."""
return {"status": "not_implemented", "project_id": project_id}
@mcp.tool()
async def get_logs(project_id: str, run_id: str, job: str | None = None) -> dict:
"""Get logs from a pipeline run."""
return {"status": "not_implemented", "project_id": project_id}
if __name__ == "__main__":
mcp.run()