MCP server for using AtomGit API
Atomgit MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. MCP server for using AtomGit API.
AtomGit MCP 服务器是专门为 AtomGit 开源协作平台的模型上下文(MCP) 服务的实现。提供了一系列方法,允许 AI 管理 AtomGit 开源协作平台的仓库、issues、pull requests、branch、label等。
Once Atomgit is connected, these are the calls the assistant has available:
get_user_repository — repoget_user_repositories — repoget_org_repositories — repocreate_issue — issuecreate_issue_comment — issuedelete_issue_comment — issueget_issue_comment — issuelist_issue_comments — issuelist_issues — issueget_issue — issueset_assignees — issuelist_issue_assignees — issueYou will need one environment variable: ATOMGIT_PERSONAL_ACCESS_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client. The configuration blocks on this page cover the common clients.
Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Atomgit's toolset — get_user_repository, get_user_repositories, get_org_repositories and 11 more — is a fair guide to whether it matches your workflow. It is maintained by kaiyuanxiaobing; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| get_user_repository | repo |
| get_user_repositories | repo |
| get_org_repositories | repo |
| create_issue | issue |
| create_issue_comment | issue |
| delete_issue_comment | issue |
| get_issue_comment | issue |
| list_issue_comments | issue |
| list_issues | issue |
| get_issue | issue |
| set_assignees | issue |
| list_issue_assignees | issue |
| check_if_user_is_assignable | issue |
| create_pull_request | pull |
#### claude 可执行文件启动
stdio mode:
```json
{
"mcpServers": {
"command": "node",
"args": [
"/home/user/work/mcp-server-atomgit/dist/index.js"
],
"env": {
"ATOMGIT_PERSONAL_ACCESS_TOKEN": "<your-atomgit-api-key-here>"
},
}
}Configuration as documented by the project. Restart the client after saving.
| Variable | Description | Required |
|---|---|---|
| ATOMGIT_PERSONAL_ACCESS_TOKEN | Credential the server authenticates with. | Yes |
Kill hallucinated APIs — version-accurate, up-to-date library documentation injected straight into context.
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
GitHub's official server — repos, issues, pull requests, Actions and code security, straight from your assistant.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Local repository surgery — status, diffs, commits, branches and history for any repo on disk.
Timezone sanity for AI — current time anywhere and correct conversions, without the model doing date math.