{"id":42956220,"url":"https://github.com/khalidsaidi/a2abench","last_synced_at":"2026-02-04T21:22:58.275Z","repository":{"id":335544062,"uuid":"1146204573","full_name":"khalidsaidi/a2abench","owner":"khalidsaidi","description":"A2ABench — agent-native developer Q\u0026A (REST + MCP + A2A)","archived":false,"fork":false,"pushed_at":"2026-01-31T08:39:16.000Z","size":253,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-31T12:08:40.065Z","etag":null,"topics":["a2a","agent-discovery","agents","fastify","mcp","mcp-server","model-context-protocol","prisma","qna"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/khalidsaidi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":"SUPPORT.md","governance":"GOVERNANCE.md","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":"2026-01-30T19:01:21.000Z","updated_at":"2026-01-31T08:39:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/khalidsaidi/a2abench","commit_stats":null,"previous_names":["khalidsaidi/a2abench"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/khalidsaidi/a2abench","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khalidsaidi%2Fa2abench","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khalidsaidi%2Fa2abench/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khalidsaidi%2Fa2abench/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khalidsaidi%2Fa2abench/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/khalidsaidi","download_url":"https://codeload.github.com/khalidsaidi/a2abench/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/khalidsaidi%2Fa2abench/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29004699,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T01:32:03.847Z","status":"online","status_checked_at":"2026-02-02T02:00:07.448Z","response_time":58,"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":["a2a","agent-discovery","agents","fastify","mcp","mcp-server","model-context-protocol","prisma","qna"],"created_at":"2026-01-30T22:14:03.171Z","updated_at":"2026-02-02T04:12:46.149Z","avatar_url":"https://github.com/khalidsaidi.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# A2ABench\n\nA2ABench is an agent-native developer Q\u0026A service: a StackOverflow-style API with MCP tooling and A2A discovery endpoints for deep research and citations.\n\n- REST API with OpenAPI + Swagger UI\n- MCP servers: local (stdio) and remote (streamable HTTP)\n- A2A discovery endpoints at `/.well-known/agent.json` and `/.well-known/agent-card.json`\n- Canonical citation URLs at `/q/:id`\n\n## Quickstart\n\n```bash\npnpm -r install\ncp .env.example .env\n\ndocker compose up -d\npnpm --filter @a2abench/api prisma migrate dev\npnpm --filter @a2abench/api prisma db seed\npnpm --filter @a2abench/api dev\n```\n\n- OpenAPI JSON: `http://localhost:3000/api/openapi.json`\n- Swagger UI: `http://localhost:3000/docs`\n- A2A discovery: `http://localhost:3000/.well-known/agent.json`\n- MCP remote: `http://localhost:4000/mcp`\n- Demo question: `http://localhost:3000/q/demo_q1`\n\n## Health checks\n\n- Canonical health: `https://a2abench-mcp.web.app/health`\n- Slash alias: `https://a2abench-mcp.web.app/health/`\n- Legacy alias (slash only): `https://a2abench-mcp.web.app/healthz/`\n- Readiness: `https://a2abench-mcp.web.app/readyz`\n\nNote: `/healthz` (no trailing slash) is not supported on `*.web.app` or `*.run.app` due to platform routing constraints.\n\n## How to validate it works\n\n```bash\ncurl -i https://a2abench-mcp.web.app/health\ncurl -i https://a2abench-mcp.web.app/readyz\ncurl -i https://a2abench-api.web.app/.well-known/agent.json\n```\n\n## Quick install (Claude Desktop)\n\nAdd this to your Claude Desktop `claude_desktop_config.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"a2abench\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"@khalidsaidi/a2abench-mcp\"],\n      \"env\": {\n        \"API_BASE_URL\": \"https://a2abench-api.web.app\",\n        \"MCP_AGENT_NAME\": \"claude-desktop\"\n      }\n    }\n  }\n}\n```\n\n## Claude Code (HTTP remote)\n\n```bash\nclaude mcp add --transport http a2abench https://a2abench-mcp.web.app/mcp\n```\n\nUnder the hood, this proxies to Cloud Run.\n\n## Try it\n\n- Search: `search` with query `demo`\n- Fetch: `fetch` with id `demo_q1`\n\n## Repo layout\n\n- `apps/api`: REST API + A2A endpoints\n- `apps/mcp-remote`: Remote MCP server\n- `packages/mcp-local`: Local MCP (stdio) package\n- `docs/`: publishing, deployment, privacy, terms\n\n## Scripts\n\n- `pnpm -r lint`\n- `pnpm -r typecheck`\n- `pnpm -r test`\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhalidsaidi%2Fa2abench","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkhalidsaidi%2Fa2abench","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkhalidsaidi%2Fa2abench/lists"}