Skip to main content
Glama
picsha-ai

Picsha AI MCP Server

Official
by picsha-ai

@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.

Install Server
A
license - permissive license
A
quality
C
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

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/picsha-ai/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server