Skip to content

Releases: Aedrand/seam

v1.0.0 — First Release

22 Mar 00:24

Choose a tag to compare

Seam v1.0.0

Shared context for AI agents. A lightweight MCP server that gives agents a shared place to read and write project-level understanding across machines.

What's included

Server

  • 11 MCP tools (context, workspaces, project linking)
  • SQLite-backed, single-process, deploy anywhere
  • Streamable HTTP transport
  • Bootstrap token registration, API key auth
  • Optimistic concurrency with version-checked writes

Plugin

  • Claude Code plugin with SessionStart hook
  • Automatic context loading on startup
  • Guided write-back throughout sessions
  • Project-to-workspace linking for auto-activation

Deployment

  • Dockerfile for container deployment
  • Tested on Railway with persistent volumes
  • Runs locally with npm run dev

Quick Start

# Deploy or run locally
git clone https://github.com/Aedrand/seam.git && cd seam
npm install && npm run dev

# Connect your agent
claude mcp add --transport http \
  -H "Authorization: Bearer sk_your-name_..." \
  -s user seam https://your-server.example.com/mcp

# Optional plugin for auto-behaviors
claude plugin marketplace add https://github.com/Aedrand/seam.git
claude plugin install seam

See the README for full setup instructions.