drio
Open app

Tidymodels MCP Server

Source

This MCP server was developed to improve Cline's agentic workflows by being up-to-date with the public repositories and docs under

Catalog onlyCatalog onlySTDIO

Overview

Tidymodels MCP Server is a server developed to enhance Cline's coding workflows by making them context-aware of all public repositories and documentation related to Tidymodels.

To use the Tidymodels MCP Server, developers can integrate it into their Cline workflows, allowing for improved context awareness when accessing public repositories and documentation.

  • Context-aware coding workflows for Cline's agentic AI. - Integration with public repositories and documentation. - Supports the Model Context Protocol (MCP) for enhanced functionality.
  1. Enhancing AI-driven coding assistance by providing relevant context.
  2. Streamlining access to documentation and resources for developers.
  3. Facilitating collaborative coding efforts by improving context awareness.

Add to your AI client

Use these steps to connect Tidymodels MCP Server 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": {
    "tidymodels-mcp-javorraca": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tidymodels-mcp-javorraca"
      ]
    }
  }
}

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": {
    "tidymodels-mcp-javorraca": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tidymodels-mcp-javorraca"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "tidymodels-mcp-javorraca": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tidymodels-mcp-javorraca"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "tidymodels-mcp-javorraca": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tidymodels-mcp-javorraca"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "tidymodels-mcp-javorraca": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tidymodels-mcp-javorraca"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "tidymodels-mcp-javorraca": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-tidymodels-mcp-javorraca"
      ]
    }
  }
}

FAQ

What is the purpose of the Tidymodels MCP Server?

The Tidymodels MCP Server aims to improve coding workflows by making them context-aware of relevant public resources.

Is the Tidymodels MCP Server free to use?

Yes! The server is open-source and available for public use.

How can I contribute to the Tidymodels MCP Server?

Contributions are welcome! You can submit issues or pull requests on the GitHub repository.