Build Plugins for Cody CLI
MCP servers that give Cody new capabilities. Browse the directory, install with one click, or submit your own.
Plugin Directory
10 plugins available — add any of these to your ~/.claude/mcp.json
cody-for-chrome
Browser automation via Chrome extension. Control tabs, extract page content, fill forms, and click elements.
zerodb-memory
Semantic vector memory for conversations. Store, recall, and synthesize context across sessions.
ainative-strapi
Strapi CMS content management. Create, update, and publish blog posts, events, tutorials, and gallery items.
sequential-thinking
Step-by-step reasoning with branching. Structured thought chains for complex problem decomposition.
github
GitHub repos, issues, pull requests, and code search. Full read/write access to your repositories.
railway
Railway deployments, services, logs, and metrics. Manage your cloud infrastructure from within Cody.
filesystem
Sandboxed local file access. Read, write, and search files in approved directories.
gmail
Gmail search, labels, drafts, and thread management — OAuth secured.
google-drive
Google Drive files and sheets — OAuth. Read, search, and manage your Drive documents.
google-calendar
Google Calendar events — OAuth. Create, update, and manage calendar events with natural language.
Submit a plugin
How to Submit
Anyone can submit a plugin to the Cody CLI directory. Follow these three steps to get your MCP server listed.
Build an MCP server
Follow the Model Context Protocol spec to build your server. Any language, any transport — stdio or HTTP.
Publish to npm
Package your server as an npm package so it can be installed with npx. Include a clear README with setup instructions.
Open a submission issue
Submit your plugin details using the JSON format below. We review submissions and add approved plugins to the official directory.
Submission format
Plugin Entry Format
When opening a submission issue, include the following JSON in your issue body. All fields are required.
{
"name": "your-plugin-name",
"description": "What your plugin does in one sentence.",
"author": "Your Name or GitHub handle",
"npm_package": "your-npm-package-name",
"install_command": "npx -y your-npm-package-name",
"category": "productivity | data | communication | devtools | other",
"homepage": "https://github.com/you/your-plugin",
"tags": ["mcp", "cody", "your-tag"]
}name — Lowercase, hyphenated npm package namedescription — One sentence, under 120 charactersnpm_package — Exact npm package identifierinstall_command — Full npx command users will runcategory — One of the listed category valueshomepage — GitHub repo or docs URLHave a plugin to share?
Built an MCP server that makes Cody more powerful? Submit it to the official directory and help the community discover it.
Submit Your Plugin