picsellia-mcp
OfficialClick on "Install 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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/picselliahq/picsellia-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server