Metadata-Version: 2.4
Name: vibe-x-mcp
Version: 1.1.0
Summary: VIBE-X AI Code Quality & Team Collaboration MCP Server
Project-URL: Homepage, https://github.com/choidage/daker
Project-URL: Repository, https://github.com/choidage/daker
Author-email: Team VibeJewang <choidage@gmail.com>
License-Expression: MIT
License-File: LICENSE
Keywords: ai,code-quality,cursor,mcp,vibe-x
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Quality Assurance
Requires-Python: >=3.10
Requires-Dist: chromadb>=1.0.0
Requires-Dist: click>=8.1.0
Requires-Dist: fastapi>=0.115.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: mcp>=1.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: rich>=13.0.0
Requires-Dist: sentence-transformers>=3.0.0
Requires-Dist: uvicorn>=0.27.0
Description-Content-Type: text/markdown

# vibe-x-mcp

VIBE-X AI Code Quality & Team Collaboration MCP Server for Cursor / Claude.

## Features

- **6-Gate Pipeline**: Syntax, Rules, Integration, Security, Architecture, Collision
- **RAG Code Search**: Semantic search over your codebase via ChromaDB
- **Hidden Intent (.meta.json)**: Auto-extract code intent with AST analysis
- **Team Collaboration**: Work Zone conflict prevention, Decision Extractor
- **E2E Verification**: URL accessibility check, Playwright-based selector verification
- **Alert & Feedback**: Failure pattern analysis, threshold-based alerts
- **Onboarding Q&A**: RAG-based project Q&A for new team members

## 21 MCP Tools

| Category | Tools |
|----------|-------|
| Quality | `gate_check`, `pipeline`, `security_review`, `architecture_check` |
| RAG | `code_search`, `index_codebase` |
| Collab | `work_zone`, `extract_decisions` |
| Meta | `meta_analyze`, `meta_batch`, `meta_coverage`, `meta_dependency_graph` |
| Analysis | `feedback_analysis`, `integration_test` |
| E2E | `e2e_verify_url`, `e2e_verify_selector` |
| Ops | `project_status`, `onboarding_qa`, `get_alerts`, `acknowledge_alerts`, `health_breakdown` |

## Install

```bash
pip install vibe-x-mcp
```

## Usage

### Cursor IDE

Add to `~/.cursor/mcp.json`:

```json
{
  "mcpServers": {
    "vibe-x": {
      "command": "vibe-x-mcp",
      "args": ["--project-root", "/path/to/your/project"],
      "env": {
        "PYTHONIOENCODING": "utf-8"
      }
    }
  }
}
```

### CLI

```bash
vibe-x-mcp --project-root /path/to/your/project
vibe-x-mcp --project-root . --transport sse
```

### uvx (no install)

```bash
uvx vibe-x-mcp --project-root /path/to/your/project
```

## Requirements

- Python >= 3.10
- Project with source code to analyze

## License

MIT
