{"id":34541482,"url":"https://github.com/agenticdevops/openmcp","last_synced_at":"2026-05-27T06:32:10.830Z","repository":{"id":329070968,"uuid":"1117990058","full_name":"agenticdevops/openmcp","owner":"agenticdevops","description":"OpenMCP Gateway","archived":false,"fork":false,"pushed_at":"2025-12-17T09:47:44.000Z","size":223,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-20T18:55:56.749Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/agenticdevops.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":"docs/roadmap.md","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-17T05:27:04.000Z","updated_at":"2025-12-17T09:47:48.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/agenticdevops/openmcp","commit_stats":null,"previous_names":["agenticdevops/openmcp"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/agenticdevops/openmcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agenticdevops%2Fopenmcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agenticdevops%2Fopenmcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agenticdevops%2Fopenmcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agenticdevops%2Fopenmcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agenticdevops","download_url":"https://codeload.github.com/agenticdevops/openmcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agenticdevops%2Fopenmcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33554780,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-27T02:00:06.184Z","response_time":53,"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":"2025-12-24T06:18:08.024Z","updated_at":"2026-05-27T06:32:10.820Z","avatar_url":"https://github.com/agenticdevops.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Open MCP Gateway Documentation\n\nThis directory contains the documentation website for Open MCP Gateway, built with [Docusaurus](https://docusaurus.io/).\n\n## Live Site\n\nThe documentation is available at: **https://openmcp.aof.sh**\n\n## Local Development\n\n### Prerequisites\n\n- Node.js 18+\n- npm\n\n### Installation\n\n```bash\ncd docs-site\nnpm install\n```\n\n### Start Development Server\n\n```bash\nnpm start\n```\n\nThis starts a local development server at `http://localhost:3000`. Most changes are reflected live without having to restart the server.\n\n### Build\n\n```bash\nnpm run build\n```\n\nThis generates static content into the `build` directory that can be served by any static hosting service.\n\n## Deployment\n\nThe site is automatically deployed to GitHub Pages when changes are pushed to the `main` or `dev` branch. See `.github/workflows/deploy-docs.yml` for the deployment workflow.\n\n### Custom Domain\n\nThe site is configured to use `openmcp.aof.sh` as the custom domain. The CNAME file in `static/CNAME` ensures this works with GitHub Pages.\n\n## Documentation Structure\n\n```\ndocs/\n├── introduction.md          # Homepage/intro\n├── why-mcp-gateway.md       # Value proposition\n├── getting-started.md       # Quick start guide\n├── installation.md          # Installation instructions\n├── quick-start.md           # 5-minute quick start\n├── configuration.md         # Config overview\n├── configuration/           # Detailed config docs\n│   ├── gateway-config.md\n│   ├── server-catalog.md\n│   ├── runtimes.md\n│   └── authentication.md\n├── usage/                   # Usage guides\n│   ├── http-transport.md\n│   ├── stdio-transport.md\n│   ├── claude-desktop.md\n│   └── hot-reload.md\n├── deployment/              # Deployment guides\n│   ├── docker.md\n│   ├── kubernetes.md\n│   └── production.md\n├── developer/               # Developer docs\n│   ├── overview.md\n│   ├── architecture.md\n│   ├── crate-structure.md\n│   ├── runtime-abstraction.md\n│   ├── lifecycle-management.md\n│   ├── api-reference.md\n│   ├── api-endpoints.md\n│   ├── mcp-protocol.md\n│   ├── custom-runtimes.md\n│   ├── middleware.md\n│   ├── contributing.md\n│   └── changelog.md\n├── troubleshooting.md       # Troubleshooting guide\n├── faq.md                   # FAQ\n└── roadmap.md               # Project roadmap\n```\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b docs/my-change`)\n3. Make your changes\n4. Test locally with `npm start`\n5. Build to check for errors with `npm run build`\n6. Commit your changes (`git commit -m 'docs: add new guide'`)\n7. Push to the branch (`git push origin docs/my-change`)\n8. Open a Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagenticdevops%2Fopenmcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagenticdevops%2Fopenmcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagenticdevops%2Fopenmcp/lists"}