AirMCP

feldroy/AirMCP

3.2

If you are the rightful owner of AirMCP and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

AirMCP is a model context protocol server designed to facilitate the integration and management of machine learning models in various environments.

AirMCP

Configuring Gemini to use local version of AirMCP

{
  "theme": "Dracula",
  "selectedAuthType": "gemini-api-key",
  "preferredEditor": "vscode",
  "mcpServers": {
      "Air": {
        "command": "uv",
        "args": [
          "run",
          "--with",
          "fastmcp",
          "fastmcp",
          "run",
          "/Users/drg/projects/air-repos/AirMCP/main.py"
        ],
        "timeout": 5000
      }
  }
}

Configuring Gemini to use the hosted version of AirMCP:

{
  "theme": "Dracula",
  "selectedAuthType": "gemini-api-key",
  "preferredEditor": "vscode",
  "mcpServers": {
    "Air": {
        "httpUrl": "https://airmcp.fastapicloud.dev/mcp"
    }
  }
}