The Tangled MCP Server integrates with the Tangled git collaboration platform (built on AT Protocol), enabling repository and issue management through MCP clients like Claude Code, Cursor, and Codex CLI.
Core Capabilities:
Repository Management: List branches for any repository with cursor-based pagination (1-100 items per request)
Issue Management: Create, update, delete, and list issues with support for titles, descriptions, and labels
Label Management: List available labels for repositories
Connection Status: Monitor authentication and platform accessibility via
tangled://statusresource
Key Features:
Flexible repository identification using
owner/repoformat with handles (with/without@prefix) or DIDsPagination support across all list operations
Authentication via Tangled handle and app password credentials
Cross-platform MCP client compatibility
Provides tools for interacting with git repositories through the Tangled platform, enabling repository and branch management, issue creation and listing capabilities.
tangled-mcp
MCP server for Tangled - a git collaboration platform built on AT Protocol.
note: this repository is mirrored to GitHub for deployment via FastMCP Cloud.
installation
configuration
create .env file:
usage
claude code
cursor
add to your cursor settings (~/.cursor/mcp.json or .cursor/mcp.json):
codex cli
other clients
for clients that support MCP server configuration, use:
command:
uvxargs:
["tangled-mcp"]environment variables:
TANGLED_HANDLE,TANGLED_PASSWORD, and optionallyTANGLED_PDS_URL
development usage
resources
tangled://status- connection status (PDS auth + tangled accessibility)
tools
all tools accept repositories in owner/repo format (e.g., zzstoatzz/tangled-mcp). handles (with or without @ prefix) and DIDs are both supported for the owner.
repositories
list_repo_branches(repo, limit, cursor)- list branches for a repository
issues
create_repo_issue(repo, title, body, labels)- create an issue with optional labelsupdate_repo_issue(repo, issue_id, title, body, labels)- update an issue's title, body, and/or labelsdelete_repo_issue(repo, issue_id)- delete an issuelist_repo_issues(repo, limit, cursor)- list issues for a repositorylist_repo_labels(repo)- list available labels for a repository
development
mcp-name: io.github.zzstoatzz/tangled-mcp