Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TANGLED_HANDLE | Yes | Your Tangled handle | |
| TANGLED_PDS_URL | No | Optional: only needed if using custom PDS (leave blank for auto-discovery) | |
| TANGLED_PASSWORD | Yes | Your Tangled app password |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_repo_branches | list branches for a repository Args: repo: repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp') limit: maximum number of branches to return (1-100) Returns: list of branches |
| create_repo_issue | create an issue on a repository Args: repo: repository identifier in 'owner/repo' format title: issue title body: optional issue body/description labels: optional list of label names to apply Returns: CreateIssueResult with url (clickable link) and issue_id |
| update_repo_issue | update an existing issue on a repository Args: repo: repository identifier in 'owner/repo' format issue_id: issue number to update title: optional new title (if None, keeps existing) body: optional new body (if None, keeps existing) labels: optional list of label names to SET (replaces existing) Returns: UpdateIssueResult with url (clickable link) and issue_id |
| delete_repo_issue | delete an issue from a repository Args: repo: repository identifier in 'owner/repo' format issue_id: issue number to delete Returns: DeleteIssueResult with issue_id of deleted issue |
| list_repo_issues | list issues for a repository Args: repo: repository identifier in 'owner/repo' format limit: maximum number of issues to return (1-100) Returns: ListIssuesResult with list of issues |
| list_repo_labels | list available labels for a repository Args: repo: repository identifier in 'owner/repo' format Returns: list of available label names for the repository |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| tangled_status | check the status of the tangled connection |