picsellia-mcp
OfficialClick on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@picsellia-mcpshow me my datasets"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
picsellia-mcp
An MCP server that wraps the Picsellia Python SDK, giving AI assistants access to your computer vision platform — datasets, experiments, models, deployments, and monitoring.
Prerequisites
Python 3.10+
A Picsellia account with an API token
Related MCP server: Langflow MCP Server
Installation
git clone <repo-url>
cd picsellia-mcp
uv syncConfiguration
Copy the example env file and fill in your credentials:
cp .env.example .envVariable | Required | Default | Description |
| Yes | — | Your Picsellia API token |
| No |
| Organization to connect to |
| No |
| Picsellia API host |
| No |
| Transport protocol ( |
Usage
Claude Desktop
Add the following to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"picsellia": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/picsellia-mcp",
"picsellia-mcp"
],
"env": {
"PICSELLIA_API_TOKEN": "<your-token>",
"PICSELLIA_ORGANIZATION_NAME":"",
"PICSELLIA_HOST":"https://app.picsellia.com",
"MCP_TRANSPORT": "stdio"
}
}
}
}If
uvis not on your PATH, use the absolute path (e.g.~/.local/bin/uv).
Claude Code
Add the server from the project directory:
claude mcp add picsellia -- uv run --directory /absolute/path/to/picsellia-mcp picsellia-mcpOr add it to .claude/settings.json directly:
{
"mcpServers": {
"picsellia": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/picsellia-mcp",
"picsellia-mcp"
],
"env": {
"PICSELLIA_API_TOKEN": "<your-token>",
"PICSELLIA_ORGANIZATION_NAME":"",
"PICSELLIA_HOST":"https://app.picsellia.com",
"MCP_TRANSPORT": "stdio"
}
}
}
}Cursor
Open Settings > MCP and add a new server:
{
"mcpServers": {
"picsellia": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/picsellia-mcp",
"picsellia-mcp"
],
"env": {
"PICSELLIA_API_TOKEN": "<your-token>",
"PICSELLIA_ORGANIZATION_NAME":"",
"PICSELLIA_HOST":"https://app.picsellia.com",
"MCP_TRANSPORT": "stdio"
}
}
}
}Standalone (stdio)
uv run picsellia-mcpStandalone (HTTP)
MCP_TRANSPORT=streamable-http uv run picsellia-mcpAvailable Tools
53 tools organized by domain:
Category | Tools | Description |
Datasets | 9 | List, get, browse versions, assets, labels, stats |
Projects | 8 | List, create, get projects; list experiments |
Models | 6 | List, get models and versions; list files |
Experiments | 6 | Create, launch, attach/detach datasets, set base model |
Datalakes | 4 | List datalakes, browse data items and tags |
Deployments | 9 | List, get deployments; monitoring stats; predicted assets |
Logs | 4 | List, get, filter, and compare experiment logs |
Annotations | 3 | Get annotations, search assets with query language |
Evaluations | 4 | List evaluations and artifacts |
Most tools are read-only. Write operations are limited to experiment management (create, launch, attach datasets, set base model).
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server that lets AI assistants use all OneSchema features exposed via the public API.
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
An MCP server that provides an API to LLMs to manage their JumpCloud resources.
The official MCP Server from Mia-Platform to interact with Mia-Platform Console
Related MCP Servers
AlicenseNot gradedqualityBmaintenanceMCP server providing tools for AI-agents to interact with Enapter EMS.Apache 2.0- AlicenseNot gradedqualityDmaintenanceMCP Server for interacting with the Langflow API via a natural language interface. It exposes Langflow functionalities as tools for LLMs.MIT
- AlicenseAqualityBmaintenanceMCP server for the Partiri Cloud PaaS platform. Enables AI agents to manage workspaces, projects, services, deployments, and metrics.231MIT
- FlicenseNot gradedqualityCmaintenanceA local MCP server exposing the OpenAI platform REST API as tools for file management, fine-tuning, inference, images, audio, batch processing, and organization usage/costs.-