Learning MCP

Capture and manage learnings from implementation work

v1.0.0MCP Protocol 2024-11-05

How It Works

Agent logs learningStored in DBHuman reviewsUpdates WAMA

MCP Tools

log_learning

Log a learning from implementation work with epic, category, and action taken.

get_learnings

Query logged learnings by epic, category, or status.

get_learning_stats

Get statistics about learnings (counts by category, status, etc.).

Quick Links

Example Usage

curl -X POST https://learning-mcp.railway.app/api/mcp \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "tools/call",
    "params": {
      "name": "log_learning",
      "arguments": {
        "epic": "V2-22",
        "category": "process",
        "learning": "PR thread resolution requires GraphQL mutation",
        "action_taken": "Used resolveReviewThread mutation",
        "severity": "high"
      }
    },
    "id": 1
  }'