mcp-blackboard
@peekwez
关于 mcp-blackboard
An MCP server for managing context and memory for a multi-agent task execution based on agentic directed acyclic graph
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"mcp-blackboard": {
"command": "uv",
"args": [
"venv"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is mcp-blackboard?
mcp-blackboard is a lightweight blackboard memory server for the Model Context Protocol (MCP). It exposes an HTTP/SSE interface that lets multiple AI agents store, retrieve, and share context and results—documents, embeddings, structured objects—on a shared “blackboard.” It is designed for MCP‑compatible workflows where planner, researcher, extractor, analyzer, writer, editor, and evaluator agents collaborate without reinventing persistence.
How to use mcp-blackboard?
Clone the repository, create an isolated environment with uv venv && uv sync, copy the sample env (samples/env-sample.txt) to .env, fill in credentials, then run uv run src/main.py. Alternatively, use docker compose up -d to start the FastAPI+SSE service along with a Redis instance. The API listens on http://127.0.0.1:8000 by default.
Key features of mcp-blackboard
- Unified memory for agent context across workflows
- Filesystem abstraction via fsspec with optional drivers (S3, Azure Blob, GCS, etc.)
- Real‑time updates through Server‑Sent Events (SSE)
- Pluggable house‑keeping scheduler for pruning expired keys
- Container‑ready with deterministic builds and a slim Docker image (<90 MB)
Use cases of mcp-blackboard
- Multi‑agent collaboration sharing plans, results, and context on a single blackboard
- Tracking plan steps and marking them as completed across agents
- Persisting and retrieving agent outputs (text, dicts) for later reuse
FAQ from mcp-blackboard
What does mcp-blackboard do that alternatives don’t?
It provides a lightweight, unified memory layer specifically designed for MCP‑based multi‑agent workflows, with built‑in SSE real‑time updates and a pluggable filesystem backend (S3, Azure Blob, GCS, SFTP, SMB, etc.) without requiring ad‑hoc scratch files or transient Redis keys.
What are the runtime dependencies?
Python 3.12+ is required. The server uses FastAPI, APScheduler, and fsspec. A Redis instance is started via Docker Compose for in‑memory key, score, and embedding storage.
Where does the data live?
Data is stored in Redis by default. The filesystem abstraction (fsspec) also allows persisting context and results on remote storage such as S3, Azure Blob, GCS, ABFS, SFTP, or SMB, configured via environment variables.
What transport and authentication are supported?
The server uses HTTP with SSE for event transport (configurable via MCP_TRANSPORT as sse or poll). Authentication is not explicitly documented in the README; credentials for remote filesystems are provided via environment variables (e.g., AWS_ACCESS_KEY_ID, AZURE_STORAGE_ACCOUNT).
What are the known limits?
The README does not list explicit limits. The server relies on Redis for in‑memory storage and may be constrained by available memory and Redis configuration. Stale files can be removed via the remove_stale_files tool (default max age 3600 seconds).
推理 分类下的更多 MCP 服务器
iFlytek Workflow MCP Server
iflytekThis a simple implementation of an MCP server using iFlytek. It enables calling iFlytek workflows through MCP tools.
Proplan Mcp
King-ProplanMCP server that gives Claude persistent project memory — roadmap, session history, and codebase context. Type continue and Claude picks up exactly where you left off
MCP Servers
junfanz1This project demonstrates a decoupled real-time agent architecture that connects LangGraph agents to remote tools served by custom MCP (Modular Command Protocol) servers. The architecture enables a flexible and scalable multi-agent system where each tool can be hosted independent
quarkus-langchain4j-workshop
quarkusioQuarkus LangChain4J Workshop that demonstrates both single AI service capabilities and Agentic AI orchestration
Deno Sandbox MCP Server
bewt85An MCP server that allows you to run TypeScript, JavaScript, and Python code in a sandbox on your local machine using the Deno® sandbox. This server provides a controlled environment for executing code with explicit permission controls.
评论