by pixdataorg
Enhance project tracking in Slack with CodeRide—seamless project retrieval, task operations, and workflow visualization
Connects AI development tools like Cursor and Cline to CodeRide's task management platform. Lets your AI assistant fetch project context, manage tasks, and understand project structure through knowledge graphs.
CodeRide is an official MCP server published by pixdataorg that provides AI assistants with tools and capabilities via the Model Context Protocol. Enhance project tracking in Slack with CodeRide—seamless project retrieval, task operations, and workflow visualization It is categorized under developer tools, productivity.
You can install CodeRide in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
NOASSERTION
CodeRide is released under the NOASSERTION license.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Useful MCP listing: CodeRide is the kind of server we cite when onboarding engineers to host + tool permissions.
CodeRide has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
According to our notes, CodeRide benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We wired CodeRide into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Useful MCP listing: CodeRide is the kind of server we cite when onboarding engineers to host + tool permissions.
According to our notes, CodeRide benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
CodeRide has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
We evaluated CodeRide against two servers with overlapping tools; this profile had the clearer scope statement.
CodeRide has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
CodeRide is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
showing 1-10 of 29
Give your AI coding sidekick the power of CodeRide! CodeRide MCP connects your favorite AI development tools (like Cursor, Cline, Windsurf, and other MCP clients) directly to CodeRide, the AI-native task management system.
Imagine your AI not just writing code, but truly understanding project context, managing its own tasks, and collaborating seamlessly with you. No more endless copy-pasting or manual updates. With CodeRide MCP, your AI becomes a first-class citizen in your CodeRide workflow.
npx in any MCP-compatible environment. Get your AI connected in minutes!The CodeRide MCP server provides your AI with the following capabilities:
To install Coderide MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @PixdataOrg/coderide --client claude
CodeRide MCP supports dual-mode operation for both development and production use:
Perfect for exploring features, testing integrations, or contributing to the project without needing a real CodeRide account.
How to activate: In the Smithery playground or configuration, either:
CODERIDE_API_KEY field emptymock-key, test, etc.)What you get:
For actual CodeRide users who want to integrate with their real projects and tasks.
How to activate: Provide a valid CodeRide API key that starts with CR_API_KEY_
What you get:
For non-Smithery deployments, add this configuration to your MCP client:
{
"mcpServers": {
"CodeRide": {
"command": "npx",
"args": ["-y", "@coderide/mcp"],
"env": {
"CODERIDE_API_KEY": "YOUR_CODERIDE_API_KEY_HERE"
}
}
}
}
Prerequisites:
Once configured, your MCP client will automatically connect to the CodeRide MCP server with the appropriate mode based on your configuration.
CodeRide MCP is for:
If you're looking to make your AI assistant a more productive and integrated member of your development team, CodeRide MCP is for you.
Here's a breakdown of the tools provided by CodeRide MCP and how they can be used:
get_taskRetrieves detailed information about a specific task by its number (e.g., "TCA-3").
Input Schema:
{
"number": "task-number (e.g., 'TCA-3')",
"status": "to-do|in-progress|done", // Optional: filter by status
}
Example Use Case:
get_task with arguments: { "number": "APP-101" }.update_taskUpdates an existing task's description, status, or other mutable fields.
Input Schema:
{
"number": "task-number-identifier",
"description": "updated-task-description", // Optional
"status": "to-do|in-progress|done" // Optional
}
Example Use Case:
update_task with arguments: { "number": "BUG-42", "status": "done", "description": "Fixed the off-by-one error." }.get_promptRetrieves the specific prompt or instructions tailored for an AI agent to work on a given task.
Input Schema:
{
"number": "task-number (e.g., 'TCA-3')"
}
Example Use Case:
get_prompt with arguments: { "slug": "ETF", "number": "ETF-7" }.get_projectRetrieves details about a specific project using its slug.
Input Schema:
{
"slug": "project-slug (e.g., 'TCA')",
"name": "optional-project-name" // Can also retrieve by name
}
Example Use Case:
get_project with arguments: { "slug": "omega-initiative" }.update_projectUpdates a project's high-level information, such as its knowledge graph or system architecture diagram.
Input Schema:
{
"slug": "project-slug-identifier",
"project_knowledge": { /* JSON object representing the knowledge graph */ }, // Optional
"project_diagram": "/* Mermaid diagram string or similar */" // Optional
}
Example Use Case:
update_project with arguments: { "slug": "APB", "project_diagram": "/* new mermaid diagram */" }.start_projectRetrieves the first or next recommended task for a given project, allowing an AI to begin work.
Input Schema:
{
"slug": "project-slug (e.g., 'TCA')"
}
Example Use Case:
start_project with arguments: { "slug": "MBC" }.list_projects ✨ NEWLists all projects in the user's workspace, providing an overview of available projects with intelligent workflow guidance.
Input Schema:
{
// No input required - automatically uses workspace from API key
}
Example Use Case:
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.