Tangled MCP Server
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.
Click on "Deploy 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., "@Tangled MCP Serverlist branches for zzstoatzz/tangled-mcp"
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.
tangled-mcp
MCP server for Tangled - a git collaboration platform built on AT Protocol.
reads go through bobbin, tangled's public XRPC API (api.tangled.org) — no credentials needed. writes (issues, comments, labels) are atproto records put directly on your PDS and require an app password.
note: this repository is mirrored to GitHub for deployment via FastMCP Cloud.
hosted server
a hosted instance runs at https://nate-tangled-mcp.fastmcp.app/mcp — no install needed:
claude mcp add --transport http tangled https://nate-tangled-mcp.fastmcp.app/mcpfor write access, pass credentials per request via headers:
claude mcp add --transport http tangled https://nate-tangled-mcp.fastmcp.app/mcp \
--header "x-tangled-handle: your.handle" \
--header "x-tangled-password: your-app-password"your PDS is auto-discovered from your handle — self-hosted PDS works with no extra config.
Related MCP server: Git Workflow MCP Server
installation
git clone https://tangled.org/zzstoatzz/tangled-mcp
cd tangled-mcp
just setupconfiguration
credentials are optional — only write tools need them. hosted/multi-tenant deployments can send them per request via x-tangled-handle / x-tangled-password headers, which take precedence over env. for local use, create .env:
TANGLED_HANDLE=your.handle
TANGLED_PASSWORD=your-app-passwordusage
claude code
# read-only (no credentials)
claude mcp add tangled -- uvx tangled-mcp
# with write access
claude mcp add tangled \
-e TANGLED_HANDLE=your.handle \
-e TANGLED_PASSWORD=your-app-password \
-- uvx tangled-mcpcursor
add to your cursor settings (~/.cursor/mcp.json or .cursor/mcp.json):
{
"mcpServers": {
"tangled": {
"command": "uvx",
"args": ["tangled-mcp"],
"env": {
"TANGLED_HANDLE": "your.handle",
"TANGLED_PASSWORD": "your-app-password"
}
}
}
}codex cli
codex mcp add tangled \
--env TANGLED_HANDLE=your.handle \
--env TANGLED_PASSWORD=your-app-password \
-- uvx tangled-mcpother clients
for clients that support MCP server configuration, use:
command:
uvxargs:
["tangled-mcp"]environment variables (optional, for writes):
TANGLED_HANDLE,TANGLED_PASSWORD
development usage
uv run tangled-mcptools
repositories are owner/repo (e.g. zzstoatzz.io/tangled-mcp); handles (with or without @) and DIDs both work for the owner. issues are identified by at-uri.
discovery (no auth)
search(query, limit)- full-text search across repos, issues, and stringslist_repos(owner, limit)- list a user's repositoriesget_repo(repo)- metadata: knot, default branch, languages, labelsget_record(uri)- fetch the full record behind any at-uri (strings/pastes, comments, ...)
git (no auth)
list_branches(repo, limit)/list_tags(repo, limit)list_files(repo, path, ref)- browse the treeread_file(repo, path, ref)- file contentscommit_log(repo, ref, limit)- recent commitscompare(repo, rev1, rev2)- diff two revisions
issues & pulls (no auth)
list_issues(repo, state, limit)- filterable by open/closedget_issue(issue)list_pulls(repo, status, limit)- filterable by open/closed/mergedget_pull(pull)- single PR with live state (derived from PDS status records, no index lag)list_pipelines(repo, limit)- CI pipeline runs
writes (require credentials)
create_pull(repo, title, patch | edits, target_branch, body)- open a PR fromgit format-patchoutput, or from whole-fileedits(no clone needed — the server synthesizes the patch)create_issue(repo, title, body, labels)update_issue(issue, title, body)set_issue_state(issue, state)- close/reopenset_pull_state(pull, state)- close/reopen a PRcomment_on_issue(issue, body)delete_issue(issue)
development
just test # run tests
just check # run pre-commit checkssee docs/bobbin-api.md for notes on tangled's public API.
mcp-name: io.github.zzstoatzz/tangled-mcp
Available Tools
7 toolscreate_repo_issueA
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
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp') | |
| title | Yes | issue title | |
| body | No | ||
| labels | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| url | Yes | construct clickable tangled.org URL |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description carries the burden. It reveals it creates an issue and returns a URL and issue ID, but does not disclose side effects, permissions, or rate limits. It is adequate but not richly transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with a clear purpose statement followed by an Args list and Returns. It is front-loaded with the main action. A slightly more structured format or removal of repetitive schema info could make it more efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Covers the main purpose, required parameters, and return values. However, it lacks context on error handling, authentication, prerequisites, and how the tool fits with siblings. For a creation tool, this is sufficient but not comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 50%, so the description should compensate. It repeats the schema's parameter descriptions (e.g., repo format, optional body/labels) without adding significant new meaning or usage context beyond what is already in the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'create an issue on a repository,' which is a specific verb+resource. It distinguishes from siblings like delete_repo_issue, list_repo_issues, and update_repo_issue by focusing on creation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use or when not to use this tool versus alternatives. The purpose is implied by the name and description, but there are no exclusions or context-specific recommendations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_repo_issueB
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
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp') | |
| issue_id | Yes | issue number to delete (e.g., 1, 2, 3...) |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description bears full burden. It states deletion but does not elaborate on permanence, permissions, or side effects beyond the basic operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Short and structured with Args and Returns sections. Every sentence adds value, though it could be slightly more concise by omitting the redundant Args block.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple delete tool, basics are covered. Output schema exists, so return details are known. However, missing guidance on required permissions or potential side effects reduces completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, and the description's Args section merely repeats schema info. No additional meaning or context is added.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'delete an issue from a repository', which is a specific verb+resource. It distinguishes from siblings like create, update, and list.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance on when to use or when not to use this tool. It does not mention prerequisites, alternatives, or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_repo_branchesB
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
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp') | |
| limit | No | maximum number of branches to return |
Output Schema
| Name | Required | Description |
|---|---|---|
| branches | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It only states it returns a list of branches, without mentioning pagination, ordering, or that it's a read-only operation. The description adds minimal transparency beyond the obvious.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is brief but essentially duplicates the schema. It lacks front-loading of key purpose; the tool name does that partially. Conciseness is acceptable but not optimally structured for quick comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool is simple, has 2 well-documented parameters, and an output schema exists, the description is sufficient. It covers the primary purpose and return value, though it could mention the list's default ordering or page size.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides 100% coverage of parameter descriptions. The description repeats the same information (repo format, limit range) without adding new meaning. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool 'list branches for a repository' with a specific verb and resource. It distinguishes from sibling tools like list_repo_issues or list_repo_labels, which target different entities.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance on when to use versus alternatives. However, the tool name and description are clear enough that an agent can infer it's for listing branches, not issues or pulls. Lacks when-not or alternative suggestions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_repo_issuesA
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
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp') | |
| limit | No | maximum number of issues to return |
Output Schema
| Name | Required | Description |
|---|---|---|
| issues | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden for behavioral disclosure. It only states that it lists issues, without mentioning read-only nature, authentication needs, rate limits, or any ordering. The output schema exists but the description does not add behavioral context beyond the action.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise and uses a clear structure (Args, Returns). It is front-loaded with the main action. Only slightly impacted by using Python docstring style which may not be universal.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with an output schema, the description covers the essential parameters and purpose. It does not mention default ordering or filtering (e.g., state), but the schema limits scope. Completeness is adequate given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the input schema already documents both parameters (repo, limit). The description adds a format hint for repo but otherwise repeats schema info. It does not significantly enhance understanding beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'list issues for a repository', providing a specific verb and resource. It distinguishes itself from sibling tools (create, delete, update) and other list tools (branches, labels, pulls).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not explicitly guide when to use this tool versus alternatives. While the purpose is implied, there is no mention of when not to use it or comparison with sibling tools. Usage is clear from context but lacks explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_repo_labelsA
list available labels for a repository
Args: repo: repository identifier in 'owner/repo' format
Returns: list of available label names for the repository
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp') |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It describes a read-only operation ('list') and specifies the return format (list of label names). It does not disclose potential pagination or rate limits, but for a simple list tool, this is adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise, with a front-loaded sentence stating the purpose, followed by clear parameter and return documentation. Every sentence is necessary.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (one parameter, no annotations), the description fully covers its behavior, including the return type. It is complete for an agent to understand and invoke.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, and the description repeats the schema's description of the repo parameter without adding additional meaning. Baseline 3 is appropriate as the description adds no new semantic information.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it lists available labels for a repository, using a specific verb and resource. It distinguishes from sibling tools which deal with issues, branches, and pulls.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use or alternatives are mentioned, but the context of sibling tools makes it clear this is for listing labels, not for other operations. Some guidance would be beneficial.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_repo_pullsA
list pull requests created by the authenticated user for a repository
note: only returns PRs that the authenticated user created (tangled stores PRs in the creator's repo, so we can only see our own PRs).
Args: repo: repository identifier in 'owner/repo' format limit: maximum number of pulls to return (1-100)
Returns: ListPullsResult with list of pull requests
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp') | |
| limit | No | maximum number of pulls to return |
Output Schema
| Name | Required | Description |
|---|---|---|
| pulls | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description adequately explains the behavioral limitation (only own PRs) and the reason (PRs stored in creator's repo). It does not explicitly state it is read-only, but the context implies a safe operation. Returns a ListPullsResult, which is detailed in the output schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is structured with a clear statement, a note, and an Args section. It is slightly verbose due to the note, but every sentence adds value. Could be more concise without losing clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the presence of an output schema, the description covers the purpose, parameter details, and an important behavioral limitation. No critical information is missing for an agent to correctly select and invoke this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already describes both parameters (repo format, limit range). The description repeats the format and adds a note about the repo identifier, but does not add significant new meaning beyond what the schema provides. For high coverage, this is acceptable but not exceptional.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states the tool lists pull requests created by the authenticated user, and explicitly distinguishes it by noting the scope limitation (only own PRs). This separates it from sibling tools like list_repo_issues.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The note about only returning PRs created by the authenticated user provides important context for when to use this tool, but does not explicitly mention alternatives or when not to use it. The rationale is given, which helps in decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_repo_issueA
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
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | repository identifier in 'owner/repo' format (e.g., 'zzstoatzz/tangled-mcp') | |
| issue_id | Yes | issue number (e.g., 1, 2, 3...) | |
| title | No | ||
| body | No | ||
| labels | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | |
| url | Yes | construct clickable tangled.org URL |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided. Description discloses that labels replace existing, title/body keep existing if None, and returns a URL and issue_id. However, it does not mention authentication, rate limits, or prerequisites like repo/issue existence, which would be expected for a mutation tool without annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with clear 'Args' and 'Returns' sections, no redundant information, and front-loaded with the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With 5 parameters and an output schema, the description covers parameter behaviors and return type. It lacks error conditions or prerequisites but is adequate for a mutation tool. The output schema reduces the need for return details.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 40% (2 of 5 param descriptions) according to context, so the description adds value by explaining that title and body keep existing if None, and labels replaces existing labels. This clarifies behavior beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'update an existing issue on a repository' with specific verbs and resources. It distinguishes from sibling tools like create_repo_issue and delete_repo_issue.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for updating issues, but does not explicitly state when not to use it or compare to alternatives like create_repo_issue or delete_repo_issue. The context from sibling names helps differentiate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
4 tool updates
v0.0.12- Changed
create_repo_issue4 fields changed- added
Output schema / properties / idAdded value: +{ + "type": "integer" +} - removed
Output schema / properties / issue_idRemoved value: -{ - "type": "integer" -} - removed
Output schema / properties / repoRemoved value: -{ - "type": "string" -} - changed
Output schema / requiredPrevious value: -[ - "repo", - "issue_id", - "url" -]New value: +[ + "id", + "url" +]
- Changed
delete_repo_issue3 fields changed- added
Output schema / properties / idAdded value: +{ + "type": "integer" +} - removed
Output schema / properties / issue_idRemoved value: -{ - "type": "integer" -} - changed
Output schema / requiredPrevious value: -[ - "issue_id" -]New value: +[ + "id" +]
- Added
list_repo_pulls - Changed
update_repo_issue4 fields changed- added
Output schema / properties / idAdded value: +{ + "type": "integer" +} - removed
Output schema / properties / issue_idRemoved value: -{ - "type": "integer" -} - removed
Output schema / properties / repoRemoved value: -{ - "type": "string" -} - changed
Output schema / requiredPrevious value: -[ - "repo", - "issue_id", - "url" -]New value: +[ + "id", + "url" +]
6 tool updates
v1.0.0- Changed
create_repo_issue5 fields changed- added
Input schema / properties / labelsAdded value: +{ + "anyOf": [ + { + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "description": "optional list of label names (e.g., ['good-first-issue', 'bug']) to apply to the issue" + }, + { + "type": "null" + } + ], + "default": null +} - removed
Output schema / additionalPropertiesRemoved value: -{ - "type": "string" -} - added
Output schema / descriptionAdded value: +"result of creating an issue" - added
Output schema / propertiesAdded value: +{ + "issue_id": { + "type": "integer" + }, + "repo": { + "type": "string" + }, + "url": { + "description": "construct clickable tangled.org URL", + "readOnly": true, + "type": "string" + } +} - added
Output schema / requiredAdded value: +[ + "repo", + "issue_id", + "url" +]
- Added
delete_repo_issue - Changed
list_repo_branches2 fields changed- removed
Input schema / properties / cursorRemoved value: -{ - "anyOf": [ - { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "pagination cursor" - }, - { - "type": "null" - } - ], - "default": null -} - removed
Output schema / properties / cursorRemoved value: -{ - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null -}
- Changed
list_repo_issues7 fields changed- removed
Input schema / properties / cursorRemoved value: -{ - "anyOf": [ - { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "description": "pagination cursor" - }, - { - "type": "null" - } - ], - "default": null -} - changed
Input schema / properties / limit / defaultPrevious value: -50New value: +20 - added
Output schema / $defsAdded value: +{ + "IssueInfo": { + "description": "issue information", + "properties": { + "body": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null + }, + "cid": { + "type": "string" + }, + "createdAt": { + "type": "string" + }, + "issueId": { + "type": "integer" + }, + "labels": { + "default": [], + "items": { + "type": "string" + }, + "type": "array" + }, + "title": { + "type": "string" + }, + "uri": { + "type": "string" + } + }, + "required": [ + "uri", + "cid", + "issueId", + "title", + "createdAt" + ], + "type": "object" + } +} - removed
Output schema / additionalPropertiesRemoved value: -true - added
Output schema / descriptionAdded value: +"result of listing issues" - added
Output schema / propertiesAdded value: +{ + "issues": { + "items": { + "$ref": "#/$defs/IssueInfo" + }, + "type": "array" + } +} - added
Output schema / requiredAdded value: +[ + "issues" +]
- Added
list_repo_labels - Added
update_repo_issue
3 tool updates
- First observed
create_repo_issue - First observed
list_repo_branches - First observed
list_repo_issues
TDQS
Scored across 7 tools
Each tool targets a distinct resource and action: issues (create, delete, update, list), branches (list), labels (list), and pull requests (list). No overlapping purposes.
All tools follow a consistent verb_repo_noun pattern (e.g., create_repo_issue, list_repo_branches), with snake_case throughout.
7 tools is well-scoped for a repository management server, covering core operations without being overwhelming or sparse.
Issues have full CRUD, but branches and labels only have list operations, and pull requests are limited to listing only the authenticated user's PRs. Notable gaps exist for create/update/delete on other resources.
Maintenance
Related MCP Connectors
Git-backed platform for skills, tools, and context for AI agents
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Access the GitHub API, enabling file operations, repository management, search functionality, and…
Code intelligence for LLMs. Analyze, search, and retrieve code from any public git repository.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with GitLab repositories, manage merge requests, review code diffs, post comments, and handle issues directly through natural language.32MIT
- FlicenseNot gradedqualityNot gradedmaintenanceEnables AI assistants to interact with local Git repositories for operations like status, commits, branching, and diffs, plus GitHub API integration for managing pull requests when authenticated.-
- AlicenseBqualityDmaintenanceEnables Git repository interaction and automation via LLMs, providing tools to read, search, and manipulate Git repositories.15107MIT
- AlicenseNot gradedqualityDmaintenanceEnables GitLab repository management, including branches, merge requests, issues, pipelines, and more through natural language.MIT