A local-first markdown note app where AI agents read, write, and organize your knowledge through MCP — while you stay in control with human-in-the-loop review.
Built from day one for AI agents. MCP server with 60 tools gives agents the same power as the GUI.
Notes flow through draft, review, and published states. Humans stay in control of what gets finalized.
Wiki-links create a knowledge graph. See how ideas connect with force-directed visualization.
Bruin ships with a full Model Context Protocol server. Claude, GPT, and any MCP-compatible agent can create notes, search semantically, traverse the knowledge graph, manage agents, tasks, workflows, and workspaces — no GUI required.
// Agent creates a research note
await mcp.call("create_note", {
title: "LLM Benchmarks Q1",
content: research_output,
tags: ["#research", "#llm"],
workspace: "agent-research"
});
// Semantic search across all notes
const results = await mcp.call(
"semantic_search",
{ query: "transformer architectures" }
);
// Traverse the knowledge graph
const links = await mcp.call(
"get_backlinks",
{ note_id: results[0].id }
);
Link notes with [[wiki-links]] to build an organic knowledge graph.
The D3-powered force-directed visualization reveals hidden connections
between your ideas, research, and projects.
Powered by Hugging Face transformers, Bruin understands what you mean. Combine vector similarity with full-text search, tag filters, date ranges, and word count constraints in a single query.
Every note has a state: draft, review, or published. Agents write into draft workspaces, flag notes for review, and humans decide what gets published. A simple, opinionated workflow for human-in-the-loop AI.
First-class agent identity. Register, track, and audit every agent that touches your knowledge base.
Create, assign, and track tasks linked to notes and agents. Priority indicators with quick-complete.
Multi-step agent workflows with variable interpolation. Daily Standup, Research Summary, and more.
Nested tags like #project/bruin/v2 with automatic tree navigation.
Separate spaces for personal notes, agent output, and team projects.
Visual webhook registration, testing, delivery logs, and HMAC-signed callbacks with retry.
Daily journals, meeting notes, and custom templates for quick starts.
Dark Graphite, Charcoal, Solarized, Nord, Dracula, and more.
Bidirectional sync with conflict resolution. Your notes, everywhere.
Bruin's MCP server exposes 60 tools across six categories. Install it alongside Claude Code, Cursor, or any MCP-compatible client.
create_note
Create with title, content, tags, workspace
read_note / update_note / delete_note
Full CRUD with optimistic locking
batch_create_notes
Atomic creation of multiple notes
search_notes / semantic_search
FTS5 + vector similarity search
advanced_query
Tags AND/OR, dates, word count, FTS
get_backlinks
Query knowledge graph connections
register_agent
Register agent with capabilities & metadata
list_agents
View all registered agents and status
update_agent
Modify agent config and capabilities
deactivate_agent
Disable agent access gracefully
create_task / complete_task
Task lifecycle linked to notes & agents
list_tasks / assign_task
Filter, prioritize, and delegate to agents
create_workflow / run_workflow
Multi-step agent workflow templates
list_workflows
Browse available workflow definitions
register_webhook
Subscribe to note events with HMAC signing
list_webhooks / test_webhook
Manage and verify connectivity
list_workspaces / create_workspace
Organize notes into separate spaces
bind_agent_workspace
Scope agent access to workspaces
list_tags / manage_tags
Hierarchical tag management
import_markdown / export_note
Import .md with frontmatter, export to formats
get_daily_note / list_templates
Quick-start templates and daily journals
get_activity / get_stats
Activity feed and usage analytics
{
"mcpServers": {
"bruin": {
"command": "npx",
"args": ["bruin-mcp-server"]
}
}
}
Free and open source, v0.4.0. Download for macOS (Apple Silicon & Intel) or build from source.