
Rockfish MCP Server
Enables AI assistants to interact with Rockfish's machine learning platform through comprehensive API access. Supports managing databases, worker sets, workflows, models, projects, and datasets for ML operations.
README
Rockfish MCP Server
A Model Context Protocol (MCP) server that provides access to the Rockfish API, enabling AI assistants to interact with Rockfish's machine learning platform.
Features
This MCP server provides tools for the following Rockfish resources:
- Databases: Create, list, update, and delete databases
- Worker Sets: Manage worker sets for distributed processing
- Workflows: Create and manage ML workflows
- Models: Upload, list, and manage ML models
- Projects: Organize and manage projects
- Datasets: Create and manage datasets
Installation
- Clone the repository:
git clone https://github.com/yourusername/rockfish-mcp.git
cd rockfish-mcp
- Install dependencies:
pip install -e .
- Set up environment variables:
cp .env.example .env
# Edit .env and add your Rockfish API key
Configuration
Create a .env
file with your Rockfish API credentials:
ROCKFISH_API_KEY=your_api_key_here
ROCKFISH_BASE_URL=https://api.rockfish.ai
Usage
Run the MCP server:
python -m rockfish_mcp.server
Or use the console script:
rockfish-mcp
Claude Desktop Setup
To use this MCP server with Claude Desktop:
-
Complete the installation steps above (clone, install dependencies, set up .env file)
-
Find your Claude Desktop configuration directory:
- macOS:
~/Library/Application Support/Claude/
- Windows:
%APPDATA%\Claude\
- Linux:
~/.config/Claude/
- macOS:
-
Create or edit the
claude_desktop_config.json
file in that directory:
{
"mcpServers": {
"rockfish": {
"command": "/path/to/your/project/.venv/bin/python",
"args": ["-m", "rockfish_mcp.server"],
"env": {
"ROCKFISH_API_KEY": "your_api_key_here",
"ROCKFISH_BASE_URL": "https://api.rockfish.ai"
}
}
}
}
-
Update the paths in the configuration:
- Replace
/path/to/your/project/.venv/bin/python
with the actual path to your Python executable - Replace
your_api_key_here
with your actual Rockfish API key - Adjust
ROCKFISH_BASE_URL
if you're using a different endpoint
- Replace
-
Get the correct Python path by running this command in your project directory:
which python
- Example configuration (replace with your actual paths and API key):
{
"mcpServers": {
"rockfish": {
"command": "/Users/shane/code/rockfish-mcp/.venv/bin/python",
"args": ["-m", "rockfish_mcp.server"],
"env": {
"ROCKFISH_API_KEY": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"ROCKFISH_BASE_URL": "https://sunset-beach.rockfish.ai"
}
}
}
}
-
Restart Claude Desktop after making these changes
-
Test the connection by asking Claude to list your Rockfish databases or projects
MCP Inspector Setup
The MCP Inspector is a debugging tool that helps you test your MCP server before connecting it to Claude Desktop.
Installation
npx @modelcontextprotocol/inspector
Usage
- Start the MCP Inspector:
npx @modelcontextprotocol/inspector /Users/shane/code/rockfish-mcp/.venv/bin/python -m rockfish_mcp.server
- Or create a test script for easier repeated testing:
#!/bin/bash
# test-mcp.sh
export ROCKFISH_API_KEY="your_api_key_here"
export ROCKFISH_BASE_URL="https://sunset-beach.rockfish.ai"
npx @modelcontextprotocol/inspector /Users/shane/code/rockfish-mcp/.venv/bin/python -m rockfish_mcp.server
Make it executable and run:
chmod +x test-mcp.sh
./test-mcp.sh
-
The Inspector will open in your browser and show:
- Available tools (should show all 22 Rockfish tools)
- Tool schemas and descriptions
- Interactive tool testing interface
-
Test your tools by:
- Selecting a tool from the list (e.g.,
list_databases
) - Filling in required parameters
- Clicking "Call Tool" to test the API call
- Viewing the response
- Selecting a tool from the list (e.g.,
Useful Tools to Test First
list_databases
- Simple GET request with no parameterslist_projects
- Another simple list operationget_database
- Test with a database ID from the listcreate_database
- Test creating a new resource
Troubleshooting
- MCP server not appearing: Check that the Python path is correct and the virtual environment is activated
- Authentication errors: Verify your
ROCKFISH_API_KEY
is correct - Connection issues: Confirm your
ROCKFISH_BASE_URL
is accessible - Path issues on Windows: Use forward slashes or escaped backslashes in JSON paths
Available Tools
Database Tools
list_databases
: List all databasescreate_database
: Create a new databaseget_database
: Get a specific database by IDupdate_database
: Update a databasedelete_database
: Delete a database
Worker Set Tools
list_worker_sets
: List all worker setscreate_worker_set
: Create a new worker setget_worker_set
: Get a specific worker set by IDdelete_worker_set
: Delete a worker set
Workflow Tools
list_workflows
: List all workflowscreate_workflow
: Create and run a new workflowget_workflow
: Get a specific workflow by IDupdate_workflow
: Update a workflow
Model Tools
list_models
: List all modelsupload_model
: Upload a new modelget_model
: Get a specific model by IDdelete_model
: Delete a model
Project Tools
list_projects
: List all projectscreate_project
: Create a new projectget_project
: Get a specific project by IDupdate_project
: Update a project
Dataset Tools
list_datasets
: List all datasetscreate_dataset
: Create a new datasetget_dataset
: Get a specific dataset by IDupdate_dataset
: Update a datasetdelete_dataset
: Delete a dataset
Development
To contribute to this project:
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
MIT License
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.