mostlyai-mcp-server

mostly-ai/mostlyai-mcp-server

3.3

If you are the rightful owner of mostlyai-mcp-server 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.

The MOSTLY AI MCP Server is a Model Context Protocol server that facilitates interaction with the MOSTLY AI Platform, supporting OAuth 2.1 for secure communication with LLM agents.

Tools
22
Resources
0
Prompts
0

MOSTLY AI MCP Server

license GitHub stars

A Model Context Protocol (MCP) server with OAuth 2.1 support for LLM agents to interact with the MOSTLY AI Platform.

Available Tools

ToolDescription
get_platform_inforetrieve information about the platform
get_user_inforetrieve information about the current user
get_modelsretrieve a list of available models of a specific type
get_computesretrieve a list of available compute resources for tasks
list_connectorslist all available connectors
get_connectorget details of a specific connector
create_connectorcreate a new connector and optionally test the connection
get_connector_locationslist available locations (schemas, tables, buckets, etc.) for a connector
get_connector_schemaget the schema of a table or file at a connector location
read_connector_dataread data from a connector location
write_connector_datawrite data to a connector location (currently disabled)
query_connectorexecute a read-only SQL query against a connector's data source
list_generatorslist all available generators
get_generatorget details of a specific generator
poll_generator_progresspoll progress of a generator training job
train_generatortrain a new generator with provided data or configuration
clone_generatorclone an existing generator
get_synthetic_datasetget details of a specific synthetic dataset
poll_synthetic_dataset_progresspoll progress of a synthetic dataset generation job
generate_synthetic_datasetgenerate a synthetic dataset using a generator
list_synthetic_datasetslist all available synthetic datasets
probe_generatorprobe a generator for a new synthetic dataset (quick sample)

Usage of Remote Server

Prerequisites

An MCP host that supports the latest MCP specification and remote servers, such as Claude, VS Code and Cursor.

Installation

Claude Desktop or Web UI

Search and tools -> Add integrations -> Add integration -> Set Integration name to the name of your choice (e.g., mostlyai) and Integration URL to https://mcp.mostly.ai/sse.

VS Code (>= v1.101)

Install in VS Code

For quick installation, please use the one-click button above. Alternatively, one can add the following JSON to .vscode/mcp.json (for the workspace) or the global settings.json (for the user).

{
  "servers": {
    "mostlyai": {
      "url": "https://mcp.mostly.ai/sse"
    }
  }
}

Cursor Install in Cursor

For quick installation, please use the one-click button above. Alternatively, one can add the following JSON to ~/.cursor/mcp.json.

{
    "mcpServers": {
      "mostlyai": {
        "url": "https://mcp.mostly.ai/sse"
      }
    }
}

Development

Setup virtual environment

uv sync --frozen

Start the server locally

  1. Set the necessary environment variables (see .env.example)
  2. uv run mostlyai-mcp-server --port 8000
  3. Connect to the server with the configuration described in the above section, but change the url to http://localhost:8000/sse.

Debug

We recommend to use the Anthropic's MCP Inspector for testing and debugging by running npx @modelcontextprotocol/inspector.