drio
Open app

OrgaTrader

Source

Model Context Protocol (MCP) server implementation for GitHub integration

Catalog onlyCatalog onlySTDIO

Overview

OrgaTrader is a Model Context Protocol (MCP) server implementation designed for seamless integration with GitHub, enabling enhanced project management and collaboration.

To use OrgaTrader, set up the MCP server and connect it to your GitHub repository. Follow the documentation provided in the GitHub repository for detailed setup instructions.

  • Integration with GitHub for project management - Implementation of Model Context Protocol (MCP) - Enhanced collaboration tools for developers
  1. Streamlining project workflows in GitHub.
  2. Facilitating communication between team members through integrated tools.
  3. Managing project contexts effectively using MCP.

Add to your AI client

Use these steps to connect OrgaTrader in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "orgatrader-dmaccoille820": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-orgatrader-dmaccoille820"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "orgatrader-dmaccoille820": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-orgatrader-dmaccoille820"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "orgatrader-dmaccoille820": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-orgatrader-dmaccoille820"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "orgatrader-dmaccoille820": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-orgatrader-dmaccoille820"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "orgatrader-dmaccoille820": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-orgatrader-dmaccoille820"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "orgatrader-dmaccoille820": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-orgatrader-dmaccoille820"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol (MCP)?

MCP is a protocol designed to enhance the context management of projects, allowing for better organization and collaboration.

Is OrgaTrader free to use?

Yes! OrgaTrader is open-source and available for free on GitHub.

How can I contribute to OrgaTrader?

Contributions are welcome! Please refer to the contribution guidelines in the GitHub repository.