Metadata-Version: 2.4
Name: mseep-modal-server
Version: 0.1.1
Home-page: 
Author: mseep
Author-email: mseep <support@skydeck.ai>
Maintainer-email: mseep <support@skydeck.ai>
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.28.1
Requires-Dist: mcp>=1.1.1
Requires-Dist: python-dotenv>=1.0.1
Requires-Dist: modal>=0.67
Dynamic: author
Dynamic: requires-python

# mcp-server-modal

https://docs.google.com/document/d/1DcrSKbcsXrzCoyMe0XtAsDcE3IgBV1bLirUG80VxPq8/edit?tab=t.0

An MCP Server that allows users to deploy python scripts to [modal](https://modal.com/).

## Installation

Make sure that modal is setup:

```
pip install modal
python3 -m modal setup
```

Then setup the server with the filesystem server in your Claude desktop app:

```
{
   "mcpServers": {
        "mcp-server-modal": {
            "command": "uv",
            "args": [
                "--directory",
                "/path/to/mcp-server-modal",
                "run",
                "modal-server"
            ]
        },
        "filesystem": {
			"command": "npx",
			"args": [
				"-y",
				"@modelcontextprotocol/server-filesystem",
				"/Users/user/Desktop/",
                "/path/to/other/dir"
			]
		}
   }
}
```

## Usage

In claude, give a python script and ask it to create a modal application and deploy it for you. After code generation, you will get a link to the modal application which you can try out and share with others.

## Development

```
npx @modelcontextprotocol/inspector uv --directory /path/to/mcp-server-modal run modal-server
```
