Chunk #598
Aus: Architektur (Index: 0)
185
Tokens
Synced
Status
Taxonomie
| Kategorie | Architektur |
|---|---|
| Pfad | Architektur > Verzeichnisstruktur > Software |
| Heading-Pfad | Architektur > MCP-Tasks Architektur > Verzeichnisstruktur |
Entities
| Name | Typ |
|---|---|
| server.py | TECHNOLOGY |
| config.py | CONFIG |
| .env | CONFIG |
| requirements.txt | TECHNOLOGY |
| venv | TECHNOLOGY |
| domain | CONCEPT |
| contracts.py | CONCEPT |
| infrastructure | CONCEPT |
| db_connection.py | SERVICE |
| protokoll_logger.py | SERVICE |
| task_repository.py | SERVICE |
| tools | CONCEPT |
| task_tools.py | SERVICE |
| quality_tools.py | SERVICE |
| validators | CONCEPT |
Keywords
Inhalt
/opt/mcp-servers/mcp-tasks/
├── server.py # Hauptdatei, MCP-Server
├── config.py # Zentrale Konfiguration
├── .env # Credentials (chmod 600)
├── requirements.txt # Python Dependencies
├── venv/ # Virtual Environment
│
├── domain/ # Domain Layer
│ ├── __init__.py
│ └── contracts.py # Dataclasses: Task, LogEntry, etc.
│
├── infrastructure/ # Infrastructure Layer
│ ├── __init__.py
│ ├── db_connection.py # Database Connection Pool
│ ├── protokoll_logger.py # Logging in mcp_log
│ └── task_repository.py # CRUD-Operationen
│
├── tools/ # MCP Tools
│ ├── __init__.py
│ ├── task_tools.py # 10 Task-Management Tools
│ └── quality_tools.py # 4 Quality/Contract Tools
│
└── validators/ # (Optional) Input-Validierung
└── __init__.pyClean Content
``` `/opt/mcp-servers/mcp-tasks/ ├── server.py # Hauptdatei, MCP-Server ├── config.py # Zentrale Konfiguration ├── .env # Credentials (chmod 600) ├── requirements.txt # Python Dependencies ├── venv/ # Virtual Environment │ ├── domain/ # Domain Layer │ ├── __init__.py │ └── contracts.py # Dataclasses: Task, LogEntry, etc. │ ├── infrastructure/ # Infrastructure Layer │ ├── __init__.py │ ├── db_connection.py # Database Connection Pool │ ├── protokoll_logger.py # Logging in mcp_log │ └── task_repository.py # CRUD-Operationen │ ├── tools/ # MCP Tools │ ├── __init__.py │ ├── task_tools.py # 10 Task-Management Tools │ └── quality_tools.py # 4 Quality/Contract Tools │ └── validators/ # (Optional) Input-Validierung └── __init__.py` ```
Metadaten
| Analysiert am | 20.12.2025 12:46:14 |
|---|---|
| Analyse-Modell | gemma3:4b-it-qat |
| Embedding-Modell | mxbai-embed-large |
| Qdrant-ID | 7a8dbfe2-c3f8-47ac-9b92-46a27efc3670 |
| Erstellt | 20.12.2025 12:34:42 |
| Aktualisiert | 20.12.2025 12:57:43 |