{"id":28219671,"url":"https://github.com/codevideo/codevideo-mcp","last_synced_at":"2026-03-02T06:32:30.527Z","repository":{"id":290170968,"uuid":"968569820","full_name":"codevideo/codevideo-mcp","owner":"codevideo","description":"The MCP server for CodeVideo. Create software educational content using natural language.","archived":false,"fork":false,"pushed_at":"2025-06-29T12:05:45.000Z","size":27917,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-23T01:01:55.200Z","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":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/codevideo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2025-04-18T10:17:00.000Z","updated_at":"2025-06-29T12:05:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"774331df-5dda-4022-96a8-fa9f77c0049c","html_url":"https://github.com/codevideo/codevideo-mcp","commit_stats":null,"previous_names":["codevideo/codevideo-mcp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/codevideo/codevideo-mcp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codevideo%2Fcodevideo-mcp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codevideo%2Fcodevideo-mcp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codevideo%2Fcodevideo-mcp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codevideo%2Fcodevideo-mcp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/codevideo","download_url":"https://codeload.github.com/codevideo/codevideo-mcp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/codevideo%2Fcodevideo-mcp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29994136,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-02T01:47:34.672Z","status":"online","status_checked_at":"2026-03-02T02:00:07.342Z","response_time":60,"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-05-18T03:11:18.200Z","updated_at":"2026-03-02T06:32:30.505Z","avatar_url":"https://github.com/codevideo.png","language":"TypeScript","funding_links":[],"categories":["🌐 Web Development"],"sub_categories":[],"readme":"# codevideo-mcp\n\nThe MCP server for CodeVideo. \n\nCreate software educational content using natural language.\n\n## Examples:\n\nCreation:\n\n- \"Build a video lesson on how to use the `useState` hook in React\"\n- \"Can you create a video lesson compare and contrasting how to program concurrently in C#, Go, and Rust?\"\n- Can you give me a markdown blog post on how to use the `useState` hook in React?\"\n\nConversion:\n\n- \"Please convert these CodeVideo JSON actions to a video\"\n- \"Convert these CodeVideo JSON actions to a blog post\"\n- \"Convert these CodeVideo JSON actions to HTML\"\n- \"Can you convert this English-based lesson to Spanish?\"\n\nValidation:\n\n- \"Are these CodeVideo JSON actions valid?\"\n\n## Usage with Claude Desktop\n\nSimply drop the following into your `claude_desktop_config.json` file:\n\n```json\n{\n    // ... other MCP servers\n    \"codevideo-mcp\": {\n        \"command\": \"npx\",\n        \"args\": [\n            \"-y\",\n            \"@fullstackcraftllc/codevideo-mcp@latest\"\n        ],\n        \"env\": {\n            \"ELEVENLABS_API_KEY\": \"your-elevenlabs-api-key\",\n            \"ELEVENLABS_VOICE_ID\": \"your-elevenlabs-voice-id\",\n            \"PATH_TO_CODEVIDEO_CLI\": \"/path/to/your/codevideo-cli/binary\",\n        }\n    },\n    // ... other MCP servers\n}\n```\n\nBe sure to restart Claude after modifying this config! \n\nAfter restarting Claude Desktop, if installation was successful, you should see `codevideo-mcp` in the list of installed MCPs:\n\n![codevideo-mnp successfully installed in Claude Desktop](./codevideo-mcp-installed.png)\n\n## Local Development\n\nClone this repository:\n\n```shell\ngit clone https://github.com/codevideo/codevideo-mcp.git\n```\n\nThen, install the dependencies and build the project:\n\n```shell\ncd codevideo-mcp\nnpm install\nnpm run build\n```\n\nThen, use the following JSON to run the local version on your Claude Desktop:\n\n```json\n    // ... other MCP servers\n    \"codevideo-mcp\": {\n        \"command\": \"npx\",\n        \"args\": [\n            \"tsx\",\n            \"/path/to/your/clone/of/codevideo-mcp/src/index.ts\"\n        ],\n        \"env\": {\n            \"ELEVENLABS_API_KEY\": \"your-elevenlabs-api-key\",\n            \"ELEVENLABS_VOICE_ID\": \"your-elevenlabs-voice-id\",\n            \"PATH_TO_CODEVIDEO_CLI\": \"/path/to/your/codevideo-cli/binary\",\n        }\n    }\n    // ... other MCP servers\n```\n\n## Known Issues\n\n- Currently, creating entire courses seems to be a bit flakey and perhaps too large for the context window for Claude. We're working on refining the full course flow. Single lesson, or action array generation both seem to work well.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodevideo%2Fcodevideo-mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodevideo%2Fcodevideo-mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodevideo%2Fcodevideo-mcp/lists"}