Skip to main content
Glama
somo-ui

WorkBuddy Codex Hub MCP

by somo-ui

WorkBuddy Codex Hub MCP v0.1

A local MCP server for coordinating two coding agents through a shared SQLite task pool and an explicit review workflow.

This project is an early v0.1 implementation. It provides a runnable MCP server, a SQLite schema, agent prompt templates, examples, and a smoke test that exercises the core tool flow. It does not yet provide autonomous scheduling, a web dashboard, hosted execution, or production hardening.

What It Does

  • Lets agents query open tasks from a shared SQLite database.

  • Lets one agent claim and submit work for a task.

  • Requires review by a different registered agent.

  • Records review decisions and scores.

  • Stops repeated change-request loops after max_iterations.

Related MCP server: HiveClaude

MCP Tools

Tool

Purpose

query_open_tasks

List open and pending-review tasks.

claim_task

Claim an open task for one agent.

submit_code

Store submitted code for a module and move the task to in_progress.

request_review

Assign a different agent as reviewer and move the task to pending_review.

approve_or_reject

Record review feedback and complete, reopen, or reject the task.

Quick Start

npm install
npm test
npm start

The default database path is ./project_hub.db. Override it with:

HUB_DB_PATH=/path/to/project_hub.db npm start

To create sample tasks:

sqlite3 project_hub.db < examples/sample_tasks.sql

Agent Setup

Copy the relevant prompt file into each agent:

  • SKILL_workbuddy.md

  • SKILL_codex.md

Both agents must connect to this MCP server and use the same SQLite database path.

Verification

npm test

The smoke test starts the compiled MCP server and checks:

  • tool listing

  • normal query, claim, submit, review, approve flow

  • unknown agent rejection

  • double-claim rejection

  • self-review rejection

  • wrong-reviewer rejection

  • max-iteration rejection

Publishing

Before publishing, update repository metadata for your actual GitHub location and run:

npm test
npm audit --omit=dev --audit-level=low

This repository includes:

  • smithery.yaml for stdio startup configuration.

  • Dockerfile for registry or hosted builds.

  • LICENSE with MIT terms.

See PUBLISH_TO_SMITHERY.md for a conservative publishing checklist.

Current Limits

  • No automatic task scheduler.

  • No concurrent write locking beyond SQLite and task status checks.

  • No web UI.

  • No hosted service.

  • No claim that this is unique in the market.

  • No claim that registry installs or GitHub stars are predictable.

License

MIT. See LICENSE.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

No tool schema history has been recorded yet.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    A coordination layer for coding agents that provides memorable identities, inbox/outbox messaging, searchable message history, and file lease management to prevent conflicts. Uses Git for human-auditable artifacts and SQLite for fast queries, enabling multiple agents to collaborate across projects without stepping on each other.
    2,128
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Coordinates multiple AI coding agents by providing a shared task board, memory, and advisory file claims, letting agents work on the same repo concurrently without duplicating work or overwriting each other.
    981
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/somo-ui/workbuddy-codex-hub-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server