Binatomy
Developers

Prisma MCP Integration

192+ tool AI disponibili via Model Context Protocol. Integra Prisma MCP nel tuo AI agent, chatbot o workflow di automazione.

192+ tools
REST API + SSE
Token-based auth

Come ottenere un token MCP

1

Crea un account su Binatomy

Registrati gratuitamente su binatomy.com

2

Vai in Area Utente > MCP

Nella sezione MCP puoi generare e gestire i tuoi token

3

Genera un nuovo token

Ogni token ha scope personalizzabili e un limite di crediti

Integrazioni

Claude (Anthropic)

Configura Prisma MCP come server MCP nativo in Claude Desktop o API.

{
  "mcpServers": {
    "binatomy-prisma": {
      "command": "npx",
      "args": ["-y", "@anthropic/mcp-remote", "https://binatomy.com/api/mcp/sse"],
      "env": {
        "MCP_TOKEN": "YOUR_TOKEN_HERE"
      }
    }
  }
}

ChatGPT (OpenAI)

Collega Prisma MCP come app connessa in ChatGPT.

# In ChatGPT Settings > Connected Apps
# Add MCP Server with:
URL: https://binatomy.com/api/mcp/sse
Token: YOUR_TOKEN_HERE

Make (Integromat)

Usa le API REST di Prisma MCP nei tuoi scenari Make.

# In Make.com (Integromat):
# 1. Add HTTP module
# 2. Set URL: https://binatomy.com/api/mcp/execute
# 3. Method: POST
# 4. Headers: Authorization: Bearer YOUR_TOKEN_HERE
# 5. Body: { "tool": "tool_name", "input": { ... } }

Zapier

Integra Prisma MCP nei tuoi Zap tramite Webhooks.

# In Zapier:
# 1. Add Webhooks by Zapier
# 2. Action: POST
# 3. URL: https://binatomy.com/api/mcp/execute
# 4. Headers: Authorization: Bearer YOUR_TOKEN_HERE
# 5. Data: { "tool": "tool_name", "input": { ... } }

n8n

Usa Prisma MCP nei tuoi workflow n8n con HTTP Request.

// In n8n:
// 1. Add HTTP Request node
// 2. Method: POST
// 3. URL: https://binatomy.com/api/mcp/execute
// 4. Authentication: Header Auth
//    - Name: Authorization
//    - Value: Bearer YOUR_TOKEN_HERE
// 5. Body (JSON): { "tool": "tool_name", "input": { ... } }

API Reference

GET/api/mcp/info

Informazioni sul server MCP e le capabilities disponibili.

GET/api/mcp/tools

Lista di tutti i 192+ tool disponibili con schema input/output.

POST/api/mcp/execute

Esegui un tool. Body: { "tool": "tool_name", "input": { ... } }

GET/api/mcp/sse

Endpoint SSE per connessione MCP nativa (Claude, ChatGPT).

Nota: Tutti gli endpoint richiedono autenticazione via header Authorization: Bearer YOUR_TOKEN. I crediti vengono scalati automaticamente ad ogni esecuzione.

Domande frequenti

Come si ottiene un token MCP?

Il token MCP si genera dall'area utente di binatomy.com, nella sezione MCP, dopo aver creato un account. Ogni token ha scope personalizzabili e un limite di crediti.

Quali piattaforme si possono collegare al server MCP?

La pagina riporta la configurazione pronta per Claude, ChatGPT, Make, Zapier e n8n. Le prime due si agganciano al canale SSE, le altre chiamano l'endpoint di esecuzione via HTTP con il token nell'header.

Come si esegue un tool dalle API?

Un tool si esegue con una richiesta POST a /api/mcp/execute, con header Authorization Bearer e un corpo JSON che indica il nome del tool e i parametri di input.