{"id":50875289,"url":"https://github.com/todevelopers/todevelopers-marketplace","last_synced_at":"2026-06-15T09:03:06.884Z","repository":{"id":347050814,"uuid":"1192661508","full_name":"todevelopers/todevelopers-marketplace","owner":"todevelopers","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-21T18:10:02.000Z","size":110,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-21T20:25:54.764Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/todevelopers.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":"2026-03-26T12:44:54.000Z","updated_at":"2026-04-21T18:10:06.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/todevelopers/todevelopers-marketplace","commit_stats":null,"previous_names":["todevelopers/claude-marketplace"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/todevelopers/todevelopers-marketplace","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/todevelopers%2Ftodevelopers-marketplace","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/todevelopers%2Ftodevelopers-marketplace/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/todevelopers%2Ftodevelopers-marketplace/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/todevelopers%2Ftodevelopers-marketplace/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/todevelopers","download_url":"https://codeload.github.com/todevelopers/todevelopers-marketplace/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/todevelopers%2Ftodevelopers-marketplace/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34355179,"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-15T02:00:07.085Z","response_time":63,"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-15T09:03:05.975Z","updated_at":"2026-06-15T09:03:06.860Z","avatar_url":"https://github.com/todevelopers.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# ToDevelopers Claude Marketplace\n\nA plugin marketplace for Claude Code by [ToDevelopers](https://github.com/todevelopers), providing tools and integrations to extend Claude's capabilities.\n\n## Quick Start\n\nAdd this marketplace to Claude Code:\n\n```bash\n/plugin marketplace add todevelopers/claude-marketplace\n```\n\nBrowse and install plugins:\n\n```bash\n/plugin\n```\n\nInstall a specific plugin:\n\n```bash\n/plugin install vs-mcp-client@todevelopers-marketplace\n```\n\nList installed marketplaces:\n\n```bash\n/plugin marketplace list\n```\n\n## Available Plugins\n\n### VS MCP client\n\nA Claude Code plugin that connects Claude Code to the [VS MCP Server](https://marketplace.visualstudio.com/items?itemName=LadislavSopko.mcpserverforvs) — a Visual Studio 2022 extension exposing C#/Roslyn semantic analysis and the VS debugger via the Model Context Protocol (MCP).\n\n### mcp-builder\n\nA Claude Code plugin providing skills for building, packaging, and submitting MCP servers and apps. Includes skills for scaffolding MCP servers (`build-mcp-server`), adding interactive UI (`build-mcp-app`), bundling into distributable MCPB packages (`build-mcpb`), and walking through Anthropic's MCPB directory submission (`mcpb-submission-guide`).\n\n## Marketplace Structure\n\n```\nclaude-marketplace/\n├── .claude-plugin/\n│   └── marketplace.json       # Marketplace metadata\n└── plugins/\n    ├── vs-mcp-client/\n    │   ├── .claude-plugin/\n    │   │   └── plugin.json    # Plugin metadata\n    │   ├── .mcp.json          # MCP server configuration\n    │   └── README.md\n    └── mcp-builder/\n        ├── .claude-plugin/\n        │   └── plugin.json    # Plugin metadata\n        ├── skills/\n        │   ├── build-mcp-server/\n        │   │   └── SKILL.md\n        │   ├── build-mcp-app/\n        │   │   └── SKILL.md\n        │   ├── build-mcpb/\n        │   │   └── SKILL.md\n        │   └── mcpb-submission-guide/\n        │       └── SKILL.md\n        └── README.md\n```\n\n## Contributing\n\nTo contribute a plugin:\n\n1. Fork this repository\n2. Create a new directory under `plugins/` with your plugin name\n3. Add the required structure:\n   ```\n   plugins/your-plugin-name/\n   ├── .claude-plugin/\n   │   └── plugin.json\n   └── .mcp.json              # if your plugin provides an MCP server\n   ```\n4. Register your plugin in `.claude-plugin/marketplace.json`\n5. Submit a pull request\n\n### Plugin metadata (`plugin.json`)\n\n```json\n{\n  \"name\": \"your-plugin-name\",\n  \"version\": \"1.0.0\",\n  \"description\": \"What your plugin does\",\n  \"author\": {\n    \"name\": \"Your Name\"\n  }\n}\n```\n\n## Author\n\n**ToDevelopers** — [gazovic.todevelopers@gmail.com](mailto:gazovic.todevelopers@gmail.com)\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftodevelopers%2Ftodevelopers-marketplace","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftodevelopers%2Ftodevelopers-marketplace","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftodevelopers%2Ftodevelopers-marketplace/lists"}