Skip to main content

A self-hosted project and task management server for AI coding agents

Project description

MemoryBase

The project operating system for AI agents.

CI Docs PyPI Python 3.11+ License: MIT Docs

MemoryBase gives your AI coding assistants a shared memory and task system. Agents read your project blueprint, update task statuses, record decisions, and coordinate with each other — all through a standardised MCP interface.


Key Features

  • 17 MCP tools — projects, blueprints, tasks, vault — works with Claude Code, Cursor, and any MCP-compatible client
  • Real-time Kanban board — drag-and-drop tasks, live updates via Server-Sent Events when agents make changes
  • Blueprint editor — structured project definition with in-place editing (tech stack, folder layout, API specs, constraints)
  • Vault explorer — searchable, filterable log of decisions, error patterns, and architectural notes
  • Zero-config defaults — SQLite out of the box; PostgreSQL for production
  • Single Docker image — frontend and backend ship together

Quick Start (pip)

pip install memorybase
memorybase --port 8000

Open http://localhost:8000 — that's it.


Quick Start (Docker)

# 1. Run MemoryBase
docker run -p 8000:8000 \
  -v $(pwd)/data:/app/data \
  -e MEMORYBASE_API_KEY=my-secret-key \
  ghcr.io/sabbiramin113008/memorybase:latest

# 2. Open in browser
open http://localhost:8000

That's it. SQLite data is persisted in ./data.


Quick Start (Local Dev)

# Clone
git clone https://github.com/sabbiramin113008/memorybase.git
cd memorybase

# Start backend (creates venv, installs deps, starts with --reload)
./start-backend.sh

# In a second terminal — start frontend dev server
./start-frontend.sh

MCP Configuration

Connect any MCP-compatible AI agent to MemoryBase:

Claude Code / Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "memorybase": {
      "type": "sse",
      "url": "http://localhost:8000/mcp/sse"
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "memorybase": {
      "url": "http://localhost:8000/mcp/sse"
    }
  }
}

Your agent can now call tools like list_projects(), get_blueprint(), create_task(), update_task_status(), add_vault_entry(), and more. See MCP Tools Reference.


Screenshots

Kanban board screenshot — coming soon


Tech Stack

Layer Technology
Backend Python 3.11, FastAPI, SQLModel, SQLite / PostgreSQL
Real-time Server-Sent Events (sse-starlette)
Agent Protocol MCP (FastMCP)
Frontend React 18, Vite, Tailwind CSS v3, shadcn/ui
State React Query, Zustand
Routing React Router v6
Drag & Drop @dnd-kit/core
Docs MkDocs Material

Project Structure

memorybase/
├── backend/          # FastAPI app, SQLModel models, MCP tools, routers
├── frontend/         # React + Vite + Tailwind frontend
├── docs/             # MkDocs documentation source
├── tests/            # pytest smoke tests
├── Dockerfile        # Multi-stage build (node → python)
├── docker-compose.yml
├── start-backend.sh  # Dev convenience script
└── start-frontend.sh # Dev convenience script

Contributing

See CONTRIBUTING for dev setup, project structure, and how to add new MCP tools.


License

MIT © sabbiramin113008

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

memorybase-0.1.2-py3-none-any.whl (188.3 kB view details)

Uploaded Python 3

File details

Details for the file memorybase-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: memorybase-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 188.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.7

File hashes

Hashes for memorybase-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ed47f17e12fe4b0a6e316d6b20cf3dc4f6b48abc12a59ff70e3dde1f41a91f27
MD5 6b4fd5ddd43ca3b36b9e1753f16fe737
BLAKE2b-256 c86617a5e96f62b90470a9febc21d392fab6dc3787c2e5877510017c8626223f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page