Picsha AI MCP Server

Picsha AI MCP Server

MCP server for Picsha AI platform enabling LLMs to search, upload, and manage digital assets through natural language, with secure local proxy and multi-tenant sandbox support.

Category
Visit Server

README

@picsha-ai/mcp-server

The official Model Context Protocol (MCP) proxy server for the Picsha AI platform.

This package provides a secure, local stdio proxy that connects your LLM and AI agents (like Claude Desktop or OpenClaw) directly to your Picsha AI environment. By running locally, the server is natively enabled to securely read local files and utilize Picsha's direct-to-S3 upload pipelines.

Installation & Configuration

You do not need to install this package permanently. You can run it dynamically via npx.

Claude Desktop / OpenClaw

Add the following to your claude_desktop_config.json or openclaw.json:

{
  "mcpServers": {
    "picsha-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@picsha-ai/mcp-server@latest"
      ],
      "env": {
        "PICSHA_API_TOKEN": "<YOUR_API_TOKEN_HERE>"
      }
    }
  }
}

Security & Multi-Tenancy

You can generate a PICSHA_API_TOKEN via your Picsha Admin Dashboard. By default, this token grants the AI agent administrative access across your entire organization's library.

Sandbox Mode (User Isolation): If you are embedding this MCP server for end-user Slack bots or customer facing SaaS products, you can dynamically restrict the agent's context to a specific user by injecting their User ID as an environment variable:

      "env": {
        "PICSHA_API_TOKEN": "<YOUR_API_TOKEN>",
        "PICSHA_EXTERNAL_USER_ID": "user_123"
      }

Available Tools

This MCP server provides the following capabilities to your LLM:

  • search_assets: Perform exact or hybrid semantic vector searches across your media.
  • get_asset: Retrieve deep metadata profiles for resources.
  • upload_asset: Automatically infers MIME types and effortlessly uploads local files into Picsha's asynchronous AI ingest pipeline.
  • generate_render_url: Provides on-the-fly image transformations and AI generative fill parameters.
  • trigger_url_ingest: Ingest public web media directly into the DAM.
  • moderate_asset, link_assets, create_dam_group, update_asset, delete_asset ...and more!

Troubleshooting

Claude Desktop Hangs or Fails to Connect

If you are using macOS and Claude Desktop gets stuck connecting to the MCP (or the tools never show up), it is likely due to npx dropping standard input/output streams. To fix this:

  1. Install the server globally instead of using npx:
    npm install -g @picsha-ai/mcp-server
    
  2. Update your claude_desktop_config.json to point directly to the installed binary:
    {
      "mcpServers": {
        "picsha-ai": {
          "command": "picsha-ai-mcp",
          "args": [],
          "env": {
            "PICSHA_API_TOKEN": "<YOUR_API_TOKEN_HERE>"
          }
        }
      }
    }
    
  3. Restart Claude Desktop.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

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.

Official
Featured