drio
Open app

mcp-server-modal

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP Server Modal is a tool that enables users to deploy Python scripts quickly and efficiently to the Modal platform. # How to Use MCP Server Modal? To use MCP Server Modal, you need to install the Modal Python package and set up the server within your Claude desktop app. You can then provide a Python script, and the server will handle its deployment to Modal. # Key Features of MCP Server Modal? - Seamless integration with the Modal platform. - Simplified script deployment process through the Claude application. - CLI commands for easy setup and configuration. # Use Cases of MCP Server Modal?

  1. Deploying Python applications quickly to the cloud through Modal.
  2. Sharing deployed applications with others via generated application links.
  3. Simplifying the workflow of developers working with Python scripts in a collaborative environment. # FAQ from MCP Server Modal? - What is Modal? > Modal is a platform for deploying and running cloud applications effortlessly. - How do I install Modal? > You can install Modal by using pip with the command: pip install modal. - Can I deploy any Python script? > Yes! As long as your script is compatible with the Modal platform, you can deploy it using the MCP Server Modal.7:["$","div",null,{"className":"container mx-auto flex flex-col gap-4","children":["$L26","$L27",["$","$L28",null,{"currentProject":{"id":329,"uuid":"8934dae3-8382-415d-a513-4cd00ee83c73","name":"mcp-server-modal","title":"mcp-server-modal","description":null,"avatar_url":"https://avatars.githubusercontent.com/u/904070?v=4","created_at":"$D2024-12-13T13:19:52.034Z","updated_at":"$D2024-12-13T15:09:08.575Z","status":"created","author_name":"Flux159","author_avatar_url":"https://avatars.githubusercontent.com/u/904070?v=4","tags":"[]","category":"developer-tools","is_featured":false,"sort":1,"url":"https://github.com/Flux159/mcp-server-modal","target":"_self","content":"$29","summary":"$2a","img_url":null,"type":null,"metadata":null,"user_uuid":null,"tools":null,"sse_url":null,"sse_provider":null,"sse_params":null,"is_official":false,"server_command":null,"server_params":null,"server_config":null,"allow_call":false,"is_innovation":false,"is_dxt":false,"dxt_manifest":null,"dxt_file_url":null,"is_audit":false},"randomProjects":[],"currentServerKey":"$undefined"}]]}]

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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