Prisma MCP Integration
192+ tool AI disponibili via Model Context Protocol. Integra Prisma MCP nel tuo AI agent, chatbot o workflow di automazione.
Come ottenere un token MCP
Crea un account su Binatomy
Registrati gratuitamente su binatomy.com
Vai in Area Utente > MCP
Nella sezione MCP puoi generare e gestire i tuoi token
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
/api/mcp/infoInformazioni sul server MCP e le capabilities disponibili.
/api/mcp/toolsLista di tutti i 192+ tool disponibili con schema input/output.
/api/mcp/executeEsegui un tool. Body: { "tool": "tool_name", "input": { ... } }
/api/mcp/sseEndpoint 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.