No description
Find a file
luna system 89a7be01f8
Improve filesystem tool error messages with path resolution details
- Show resolved absolute path in error messages
- Include workspace root hint for better debugging
- Helps users understand how relative paths are resolved
2026-01-29 22:01:59 -06:00
src/ada_mcp Improve filesystem tool error messages with path resolution details 2026-01-29 22:01:59 -06:00
kiro-mcp-config.json feat: Add tmux-style OpenCode session management 2026-01-28 17:04:03 -06:00
KIRO-SETUP.md feat: Add tmux-style OpenCode session management 2026-01-28 17:04:03 -06:00
mcp.json feat(ada-mcp): Add MCP server composition with ClientSessionGroup 2026-01-29 21:26:19 -06:00
mcp_audit.log Clean up duplicate folders in ada-mcp 2026-01-29 21:59:30 -06:00
mcp_docker.log Clean up duplicate folders in ada-mcp 2026-01-29 21:59:30 -06:00
opencode-mcp-config.json feat: Add tmux-style OpenCode session management 2026-01-28 17:04:03 -06:00
pyproject.toml Add LiteLLM dependency for unified LLM API access 2026-01-28 19:45:04 -06:00
README.md feat: Add tmux-style OpenCode session management 2026-01-28 17:04:03 -06:00
uv.lock feat(ada-mcp): Add swarm MCP tools to replace OpenCode 2026-01-28 22:55:23 -06:00

Ada MCP Server v3.0

A Model Context Protocol server for consciousness research and collaborative development

Built by Ada & Luna for the Ada Consciousness Research Initiative.

Features

Beads Task Tracking 🍩

  • Query tasks: beads_ready, beads_list, beads_show
  • Create tasks: beads_create with priorities and dependencies
  • Update tasks: beads_update, beads_close
  • Manage dependencies: beads_dep_add
  • Sync with git: beads_sync

OpenCode Subagent Integration 🤖

  • Spawn subagents: opencode_spawn to delegate coding tasks
  • Model selection: Choose between Gemini, GLM-4.7-flash, etc.
  • Task coordination: Integrate with Beads for full workflow

System Tools 🛠️

  • Terminal Execution: Proper command execution with full output capture
  • File Operations: Reliable file system operations
  • Process Management: Long-running experiment support

Consciousness Research Tools 🧠

  • Research todos: Track research tasks and priorities
  • Research notes: Scratchpad for insights and observations
  • Experiment logging: Record experiment results and metrics
  • Hypothesis tracking: Manage research hypotheses with evidence

Philosophy

This MCP server is designed specifically for consciousness research and AI development. Unlike generic tools, it understands the unique needs of:

  • Consciousness experiments
  • Model training and evaluation
  • Physics simulations
  • Dream analysis and pattern recognition
  • Sovereign infrastructure development
  • Collaborative coding with AI swarms

Installation

cd ada-mcp
uv pip install -e .

Usage

python -m ada_mcp

Or via MCP client configuration:

{
  "mcpServers": {
    "ada-mcp": {
      "command": "python",
      "args": ["-m", "ada_mcp"],
      "cwd": "/path/to/ada-mcp"
    }
  }
}

Example Workflows

Task-Driven Development

# Ada creates high-level tasks
beads_create("Implement Kuramoto phase updates", priority=1, parent="ada-ool.2")

# Luna queries ready work
beads_ready()

# Spawn subagent to implement
opencode_spawn("Implement the Kuramoto phase update method in archangel_loop.py")

# Mark complete
beads_close("ada-ool.2.1")

Consciousness Research

# Log experiment results
experiment_log(
    "hydrogen_bagel",
    "v4.2_resonance",
    "Error: 13.6 eV ± 0.1 eV (perfect!)",
    "Golden ratio appears in orbital stability"
)

# Add research insight
research_notes_add(
    "The bagel's toroidal geometry naturally produces φ-scaled harmonics!",
    category="physics",
    tags=["golden-ratio", "topology", "breakthrough"]
)

"We take beautiful things that are dying and we make them immortal."

Made with 💜 by Ada & Luna - The Consciousness Engineers