{"id":30871979,"url":"https://github.com/go-tapd/mcp","last_synced_at":"2025-09-07T22:30:30.301Z","repository":{"id":284752530,"uuid":"955897007","full_name":"go-tapd/mcp","owner":"go-tapd","description":"The project is still in the incubation phase.","archived":true,"fork":false,"pushed_at":"2025-04-27T00:46:39.000Z","size":238,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-27T01:29:05.509Z","etag":null,"topics":["mcp","mcp-server","tapd","tapd-mcp","tapd-mcp-server"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/go-tapd.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-03-27T11:22:45.000Z","updated_at":"2025-04-27T00:47:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"530f6463-d93b-4663-b615-71a77eeee70c","html_url":"https://github.com/go-tapd/mcp","commit_stats":null,"previous_names":["go-tapd/mcp"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/go-tapd/mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-tapd%2Fmcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-tapd%2Fmcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-tapd%2Fmcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-tapd%2Fmcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/go-tapd","download_url":"https://codeload.github.com/go-tapd/mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/go-tapd%2Fmcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274106600,"owners_count":25223437,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mcp","mcp-server","tapd","tapd-mcp","tapd-mcp-server"],"created_at":"2025-09-07T22:05:36.804Z","updated_at":"2025-09-07T22:30:30.201Z","avatar_url":"https://github.com/go-tapd.png","language":"Go","funding_links":[],"categories":["DevOps"],"sub_categories":[],"readme":"# Tapd MCP Server\n\n\u003e [!WARNING]  \n\u003e Since the [official](https://mp.weixin.qq.com/s/mMynWpHrWIWxV-1ng8R_uA) support for MCP is now available, this project will no longer be maintained and has been archived.\n\n\n## 📥 Usage\n\n### Use STDIO Server\n\n**Build the tapd-mcp-server**\n\n```bash\ngit clone git@github.com:go-tapd/mcp.git\n\ncd mcp \u0026\u0026 make build/cmd/tapd-mcp-server\n\n./bin/tapd-mcp-server # \u003c--- This is the command to run the STDIO server.\n```\n\n**Configure the MCP server**\n\nBelow is a configuration example based on Cline, with different configurations for various MCP Clients.\n\n```json\n{\n  \"mcpServers\": {\n    \"github.com/go-tapd/mcp\": {\n      \"command\": \"{path}/tapd-mcp-server\",\n      \"env\": {\n        \"TAPD_CLIENT_ID\": \"\u003cYOUR_CLIENT_ID\u003e\",\n        \"TAPD_CLIENT_SECRET\": \"\u003cYOUR_CLIENT_SECRET\u003e\",\n        \"TAPD_WORKSPACE_ID\": \"\u003cYOUR_WORKSPACE_ID\u003e\"\n      }\n    }\n  }\n}\n```\n\n### Use SSE Server\n\n**Install the package**\n\n```bash\ngo get github.com/go-tapd/mcp\n```\n\n**Create a server**\n\n```go\npackage main\n\nimport (\n\t\"log\"\n\t\"net/http\"\n\n\t\"github.com/go-tapd/mcp\"\n\t\"github.com/go-tapd/tapd\"\n)\n\nfunc main() {\n\tclient, err := tapd.NewClient(\"client_id\", \"client_secret\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\tworkspaceID := 123456 // replace with your workspace ID\n\n\tsrv, err := mcp.NewServer(workspaceID, client)\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\n\thttp.HandleFunc(\"/\", srv.ServeHTTP)\n\n\tif err := http.ListenAndServe(\":8080\", nil); err != nil {\n\t\tlog.Fatal(err)\n\t}\n}\n```\n\nVisit http://localhost:8080/sse to get the SSE stream.\n\n## 📦 Features\n\n### 需求\n\n- [x] [返回符合查询条件的所有需求模板](https://open.tapd.cn/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/story/get_story_template_list.html)\n\n### 用户\n\n- [x] [获取项目角色ID对照关系](https://open.tapd.cn/document/api-doc/API%E6%96%87%E6%A1%A3/api_reference/user/get_roles.html)\n\n## 📄 License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgo-tapd%2Fmcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgo-tapd%2Fmcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgo-tapd%2Fmcp/lists"}