{"id":49812542,"url":"https://github.com/okisdev/mcp-app-github-contributions","last_synced_at":"2026-05-13T02:13:38.436Z","repository":{"id":330691541,"uuid":"1123590255","full_name":"okisdev/mcp-app-github-contributions","owner":"okisdev","description":null,"archived":false,"fork":false,"pushed_at":"2025-12-27T08:30:07.000Z","size":34,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-29T00:47:09.591Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://mcp-app-github-contributions.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/okisdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-27T07:32:24.000Z","updated_at":"2025-12-27T08:30:10.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/okisdev/mcp-app-github-contributions","commit_stats":null,"previous_names":["okisdev/mcp-app-github-contributions"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/okisdev/mcp-app-github-contributions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/okisdev%2Fmcp-app-github-contributions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/okisdev%2Fmcp-app-github-contributions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/okisdev%2Fmcp-app-github-contributions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/okisdev%2Fmcp-app-github-contributions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/okisdev","download_url":"https://codeload.github.com/okisdev/mcp-app-github-contributions/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/okisdev%2Fmcp-app-github-contributions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32964491,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-12T23:30:32.555Z","status":"online","status_checked_at":"2026-05-13T02:00:07.132Z","response_time":115,"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":[],"created_at":"2026-05-13T02:13:37.708Z","updated_at":"2026-05-13T02:13:38.426Z","avatar_url":"https://github.com/okisdev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitHub Contributions MCP Server\n\nA Model Context Protocol (MCP) server that displays interactive GitHub contribution heatmaps, statistics, and user profiles. Built with [Hono](https://hono.dev) and deployed on [Cloudflare Workers](https://workers.cloudflare.com).\n\n## Features\n\n- Interactive contribution heatmap (similar to GitHub profile)\n- Contribution statistics (total, streaks, daily average)\n- User profile display with followers and repos count\n- Dark/Light theme support\n- Year-by-year contribution breakdown\n- Responsive design\n\n## Prerequisites\n\n- Node.js 18+\n- [pnpm](https://pnpm.io/)\n\n## Development\n\n```bash\n# Install dependencies\npnpm install\n\n# Start development server\npnpm dev\n```\n\nServer runs at `http://localhost:8787`\n\n## Deployment\n\n```bash\n# Deploy to Cloudflare Workers\npnpm deploy\n\n# Set GitHub token (optional, for higher API rate limits)\nnpx wrangler secret put GITHUB_TOKEN\n```\n\n## MCP Client Configuration\n\n### Cursor\n\nAdd to `.cursor/mcp.json` (project) or `~/.cursor/mcp.json` (global):\n\n```json\n{\n  \"mcpServers\": {\n    \"github-contributions\": {\n      \"url\": \"https://your-worker.workers.dev/mcp\"\n    }\n  }\n}\n```\n\nWith authentication:\n\n```json\n{\n  \"mcpServers\": {\n    \"github-contributions\": {\n      \"url\": \"https://your-worker.workers.dev/mcp\",\n      \"headers\": {\n        \"Authorization\": \"Bearer ${env:MCP_AUTH_TOKEN}\"\n      }\n    }\n  }\n}\n```\n\n### Claude Desktop\n\nAdd to your Claude Desktop MCP configuration:\n\n```json\n{\n  \"mcpServers\": {\n    \"github-contributions\": {\n      \"url\": \"https://your-worker.workers.dev/mcp\"\n    }\n  }\n}\n```\n\n## API Endpoints\n\n| Endpoint | Method | Description |\n|----------|--------|-------------|\n| `/` | GET | Interactive web UI |\n| `/mcp` | ALL | MCP Streamable HTTP Transport endpoint |\n| `/api/contributions/:username` | GET | REST API for contribution data |\n| `/health` | GET | Health check |\n\n## MCP Tool\n\n### `github_contributions`\n\nDisplay an interactive GitHub contributions widget.\n\n**Parameters:**\n- `username` (string, optional): GitHub username to fetch contributions for. If not provided, an input field will be shown in the UI.\n\n**Returns:** MCP App HTML component with contribution heatmap and statistics.\n\n## Environment Variables\n\n| Variable | Description | Required |\n|----------|-------------|----------|\n| `GITHUB_TOKEN` | GitHub personal access token for higher API rate limits | No (recommended) |\n\n## Transport Protocol\n\nThis server uses **Streamable HTTP Transport** via `@hono/mcp`:\n\n- Single endpoint (`/mcp`) for all MCP operations\n- Stateless request handling\n- SSE streaming support\n- Compatible with modern MCP clients (Cursor, Claude Desktop, etc.)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fokisdev%2Fmcp-app-github-contributions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fokisdev%2Fmcp-app-github-contributions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fokisdev%2Fmcp-app-github-contributions/lists"}