Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Breadcrumb MCP Servercreate a new ADR for implementing user authentication"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Breadcrumb MCP Server
MCP (Model Context Protocol) server for the Breadcrumbs project memory system.
Installation
cd mcp-server
pip install -e .Usage
The server will be automatically discovered by Claude Code when configured in your MCP settings.
Configuration
Add to your Claude Code MCP settings:
{
"mcpServers": {
"breadcrumb": {
"command": "python3",
"args": ["-m", "breadcrumb_mcp.server"],
"env": {
"BREADCRUMB_ROOT": "/path/to/breadcrumb"
}
}
}
}Features
Tools
Project Management: create_project, list_projects, get_project_info, get_project_stats
Documentation: create_session, create_component, create_adr, create_pattern
Search: search_breadcrumbs, find_related_docs, list_tags, get_timeline
Updates: add_learning, add_followup, update_project_status, quick_note
Indexing: generate_master_index, get_quick_reference
Resources
breadcrumb://projects- List all projectsbreadcrumb://project/{name}/index- Read project indexbreadcrumb://project/{name}/sessions/{file}- Read session logbreadcrumb://project/{name}/components/{file}- Read component docbreadcrumb://project/{name}/adr/{file}- Read ADRbreadcrumb://project/{name}/patterns/{file}- Read pattern
Development
# Install with dev dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Format code
black src/
# Lint
ruff check src/