Complete RFC 0002: Realm MCP Integration with notifications support. New MCP tool: - notifications_list: List notifications with state filters (pending, seen, expired, all) DaemonDb extensions: - cleanup_expired_notifications: Auto-delete 7+ day old notifications - list_notifications_with_state: Returns notifications with computed state Schema integrity checking: - Canonical JSON hashing (SHA-256) for schema fingerprinting - check_schema_integrity returns hashes for all accessible contracts - Integrated into realm_check response Notification piggybacking: - fetch_pending_notifications for realm_status and realm_check - Filtered to domains the current repo participates in RFC 0002 is now complete with all 8 tools: - Phase 1: realm_status, realm_check, contract_get - Phase 2: session_start, session_stop - Phase 3: realm_worktree_create, realm_pr_status - Phase 4: notifications_list Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
565 B
TOML
24 lines
565 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
|
|
serde_yaml.workspace = true
|
|
thiserror.workspace = true
|
|
anyhow.workspace = true
|
|
tokio.workspace = true
|
|
tracing.workspace = true
|
|
chrono.workspace = true
|
|
git2.workspace = true
|
|
regex.workspace = true
|
|
sha2.workspace = true
|
|
|
|
[dev-dependencies]
|
|
blue-core = { workspace = true, features = ["test-helpers"] }
|
|
tempfile.workspace = true
|