{"id":50666698,"url":"https://github.com/decocms/mcps","last_synced_at":"2026-06-08T07:04:24.518Z","repository":{"id":322710627,"uuid":"1090580000","full_name":"decocms/mcps","owner":"decocms","description":"First-party MCPs maintained by the decocms team.","archived":false,"fork":false,"pushed_at":"2026-05-20T20:09:06.000Z","size":10207,"stargazers_count":9,"open_issues_count":39,"forks_count":3,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-05-21T01:54:04.531Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/decocms.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-11-05T21:23:35.000Z","updated_at":"2026-05-20T20:09:10.000Z","dependencies_parsed_at":null,"dependency_job_id":"0a8d0a55-7e0f-4e42-a83c-289d71737a50","html_url":"https://github.com/decocms/mcps","commit_stats":null,"previous_names":["decocms/mcps"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/decocms/mcps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decocms%2Fmcps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decocms%2Fmcps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decocms%2Fmcps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decocms%2Fmcps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/decocms","download_url":"https://codeload.github.com/decocms/mcps/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/decocms%2Fmcps/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34051773,"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-06-08T02:00:07.615Z","response_time":111,"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-06-08T07:04:04.491Z","updated_at":"2026-06-08T07:04:24.512Z","avatar_url":"https://github.com/decocms.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# mcps \n\nFirst-party MCPs maintained by the decocms team.\n\n## Getting Started\n\nAfter cloning the repository, install dependencies:\n\n```bash\nbun install\n```\n\nThis will automatically set up git hooks that run formatting and linting checks before each commit.\n\nTo manually set up the git hooks later, run:\n\n```bash\nbun run prepare\n```\n\n## Creating a New MCP\n\nUse the `new.ts` script to quickly scaffold a new MCP:\n\n```bash\nbun run new \u003cname\u003e [options]\n```\n\n### Options\n\n- `-d, --description` - Description for package.json\n- `-h, --help` - Show help message\n\n### Examples\n\n**Create a new MCP:**\n\n```bash\nbun run new weather-api\n```\n\n**Create with custom description:**\n\n```bash\nbun run new weather-api --description \"Weather forecast API\"\n```\n\n### After Creating\n\n```bash\ncd your-mcp-name\nbun install\nbun run dev\n```\n\nThat's it! The deployment workflows will automatically detect your new MCP - no manual configuration needed.\n\n## Deployment\n\nThis monorepo uses centralized GitHub Actions workflows with **automatic MCP discovery**.\n\n### How It Works\n\n- **Automatic MCP Discovery**: The workflows automatically find all directories with a `package.json` (excluding special folders like `scripts`, `shared`, etc.)\n- **Smart Change Detection**: Uses git diff to detect which MCPs have changed in each commit or PR\n- **Selective Deployment**: Only MCPs with actual changes are built and deployed\n- **Parallel Execution**: Multiple changed MCPs deploy simultaneously using GitHub's matrix strategy\n\n### Workflows\n\n- `.github/workflows/deploy.yml` - Production deployment on push to main\n- `.github/workflows/deploy-preview.yml` - Preview deployment on pull requests\n\n### What Gets Deployed?\n\n**Production (push to main)**:\n\n- Compares current commit with previous commit\n- Deploys all MCPs that have file changes\n\n**Preview (pull requests)**:\n\n- Compares PR branch with base branch (main)\n- Deploys all MCPs that have changes in the PR\n- Posts preview URLs as a comment on the PR\n\n### Manual Deployment\n\nYou can also deploy MCPs manually using the deployment script:\n\n```bash\n# Deploy to production\nbun run scripts/deploy.ts your-mcp-name\n\n# Deploy preview\nbun run scripts/deploy.ts your-mcp-name --preview\n```\n\n### Requirements\n\nEach MCP directory must have:\n\n- A `package.json` with a `build` script\n- Build output in `dist/server` directory (or as configured for Deco)\n\nRepository requirements:\n\n- `DECO_DEPLOY_TOKEN` secret configured in GitHub repository settings\n\n### Adding a New MCP\n\nJust create a new directory with a `package.json` - that's it! The workflows will automatically:\n\n1. Detect it as an MCP\n2. Monitor it for changes\n3. Deploy it when changes are pushed\n\nNo manual workflow configuration needed!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecocms%2Fmcps","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdecocms%2Fmcps","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdecocms%2Fmcps/lists"}