Warning
This project is currently in pre-alpha phase, i.e. partly functional. Feel free to already watch or star the repository to stay updated on its progress.
Tip
Integrates Claude Desktop with the web, Atlassian Confluence, and (later on) Google Workspace.
- Make Claude a team member: Makes Claude an informed member of your organisation by accessing your organization's key knowledge resources.
- Integrate research and knowlege management: Enables your teams to contribute, refine, and maintain your organisation's knowledge resources within Claude - seamlessly integrating research and sharing knowledge.
- Improve efficiency: Automate repetitive workflows such as generating Confluence pages from Google Docs.
- Complete reference documenation on Read the Docs
- High test coverage including unit and E2E tests (reported on Codecov)
- Matrix tested with Python 3.11, 3.12 and 3.13 to ensure compatibility (powered by Nox)
- Compliant with modern linting and formatting standards (powered by Ruff)
- Up-to-date dependencies (monitored by Renovate)
- A-grade code quality in security, maintainability, and reliability (verified by SonarQube)
- 1-liner for installation and execution of command line interface (CLI) via uv(x) or Docker
- Setup for developing inside a devcontainer included (supports VSCode and GitHub Codespaces)
- "Create a page about road cycling, focusing on Canyon bikes, in the personal confluence space of Helmut."
uvx starbridge install
- that's all.
Prequisites:
- You are running Mac OS X
- You already have the uv package manager installed
- You already have Claude Desktop for Mac OS X installed
- You don't care for the imaging extra
If you need to first install homebrew and uv - and care for all extras:
if [[ "$OSTYPE" == "darwin"* ]]; then # Install dependencies for macOS X
if ! command -v brew &> /dev/null; then # Install Homebrew if not present
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
brew install cairo
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then # Install dependencies for Linux
sudo apt-get update -y && sudo apt-get install curl libcairo2 -y
fi
if ! command -v uvx &> /dev/null; then # Install uv package manager if not present
curl -LsSf https://astral.sh/uv/install.sh | sh
source $HOME/.local/bin/env
fi
uvx --with "starbridge[imaging]" starbridge install # Install starbridge, including configuration and injection into Claude Desktop App
Starbridge can be run within Docker.
Starbridge implements the MCP Server interface, with Claude acting as an MCP client.
[TODO: Document resources exposed to Claude Desktop]
[TODO: Document prompts exposed to Claude Desktop]
[TODO: Document tools exposed to Claude Desktop]
[TODO: Document CLI commands]
- The Docker manual explains how to run Starbridge within Docker.
- Check out the reference with detailed documentation of public classes and functions.
- Our release notes provide a complete log of recent improvements and changes.
- In case you want to help us improve Starbridge: The contribution guidelines explain how to setup your development environment and create pull requests.