blue/crates/blue-mcp/Cargo.toml
Eric Garcia f186a470c8 feat: Phase 8 - dialogue and Playwright tools
Add 3 tools:
- blue_dialogue_lint: Validate dialogue markdown against pattern
- blue_extract_dialogue: Extract dialogue from agent JSONL outputs
- blue_playwright_verify: Generate Playwright verification plans

Features:
- Weighted scoring for dialogue linting (Critical/Major/Minor)
- jq fallback to pure Rust for JSONL extraction
- URL safety classification (localhost/dev/staging/production)

Total: 50 tools ported from coherence-mcp

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-24 04:19:18 -05:00

21 lines
489 B
TOML

[package]
name = "blue-mcp"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "MCP server - Blue's voice"
[dependencies]
blue-core.workspace = true
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
anyhow.workspace = true
tokio.workspace = true
tracing.workspace = true
chrono.workspace = true
git2.workspace = true
regex.workspace = true
[dev-dependencies]
blue-core = { workspace = true, features = ["test-helpers"] }