{
  "info": {
    "name": "RD Station CRM — mcp.ai",
    "description": "REST API for the RD Station CRM MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/rdstation_crm",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "rdstation_crm_check_token",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/check/token",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "check",
            "token"
          ]
        },
        "description": "Valida o token da conta ativa e retorna o usuário dono do token (GET /token/check).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_config",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/config",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "config"
          ]
        },
        "description": "Lê metadados de configuração da conta (para montar/entender o funil e classificar negociações).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"resource\": \"\",\n  \"deal_pipeline_id\": \"\",\n  \"page\": 0,\n  \"limit\": 0,\n  \"deal_pipeline_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_get_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "contacts"
          ]
        },
        "description": "Detalha um ou mais contatos por id (array-first). Devolve { results, count }.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"contact_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_get_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "deals"
          ]
        },
        "description": "Detalha uma ou mais negociações por id (array-first). Devolve { results, count }.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"deal_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_get_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organizations"
          ]
        },
        "description": "Detalha uma ou mais empresas por id (array-first). Devolve { results, count }.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"organization_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_list_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accounts"
          ]
        },
        "description": "Lista as contas RD Station CRM vinculadas a este install (id, label).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_list_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contacts"
          ]
        },
        "description": "Lista/pesquisa contatos (pessoas). Filtro por nome/email + paginação.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"q\": \"\",\n  \"email\": \"\",\n  \"page\": 0,\n  \"limit\": 0,\n  \"order\": \"\",\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_list_deals",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/deals",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "deals"
          ]
        },
        "description": "Lista/pesquisa negociações (deals) do funil de vendas. Filtros combináveis. Envelope: { deals, total, has_more, next_page }.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"name\": \"\",\n  \"exact_name\": false,\n  \"user_id\": \"\",\n  \"deal_pipeline_id\": \"\",\n  \"deal_stage_id\": \"\",\n  \"campaign_id\": \"\",\n  \"organization\": \"\",\n  \"win\": \"\",\n  \"closed_at\": false,\n  \"hold\": false,\n  \"page\": 0,\n  \"limit\": 0,\n  \"order\": \"\",\n  \"direction\": \"\",\n  \"user_ids\": \"\",\n  \"deal_pipeline_ids\": \"\",\n  \"deal_stage_ids\": \"\",\n  \"campaign_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_list_organizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organizations"
          ]
        },
        "description": "Lista/pesquisa empresas (organizations). Filtro por nome + paginação.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"name\": \"\",\n  \"page\": 0,\n  \"limit\": 0,\n  \"order\": \"\",\n  \"direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_manage_contact_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/contact/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "contact",
            "create"
          ]
        },
        "description": "Cria ou atualiza um contato.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"contact_id\": \"\",\n  \"contact\": {},\n  \"contact_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_manage_contact_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/contact/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "contact",
            "update"
          ]
        },
        "description": "Cria ou atualiza um contato.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"contact_id\": \"\",\n  \"contact\": {},\n  \"contact_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_manage_deal_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/deal/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "deal",
            "create"
          ]
        },
        "description": "Cria ou atualiza uma negociação.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"deal_id\": \"\",\n  \"deal\": {},\n  \"deal_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_manage_deal_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/deal/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "deal",
            "update"
          ]
        },
        "description": "Cria ou atualiza uma negociação.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"deal_id\": \"\",\n  \"deal\": {},\n  \"deal_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_manage_organization_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/organization/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "organization",
            "create"
          ]
        },
        "description": "Cria ou atualiza uma empresa.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"organization_id\": \"\",\n  \"organization\": {},\n  \"organization_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_manage_organization_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/organization/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "organization",
            "update"
          ]
        },
        "description": "Cria ou atualiza uma empresa.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"organization_id\": \"\",\n  \"organization\": {},\n  \"organization_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_notes_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/notes/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "notes",
            "create"
          ]
        },
        "description": "Anotações (notes) de uma negociação.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"deal_id\": \"\",\n  \"text\": \"\",\n  \"deal_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_notes_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/notes/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "notes",
            "list"
          ]
        },
        "description": "Anotações (notes) de uma negociação.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"deal_id\": \"\",\n  \"text\": \"\",\n  \"deal_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_tasks_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/tasks/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "tasks",
            "create"
          ]
        },
        "description": "Tarefas/atividades (tasks).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"task_id\": \"\",\n  \"task\": {},\n  \"page\": 0,\n  \"limit\": 0,\n  \"task_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_tasks_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/tasks/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "tasks",
            "list"
          ]
        },
        "description": "Tarefas/atividades (tasks).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"task_id\": \"\",\n  \"task\": {},\n  \"page\": 0,\n  \"limit\": 0,\n  \"task_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "rdstation_crm_tasks_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/tasks/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "tasks",
            "update"
          ]
        },
        "description": "Tarefas/atividades (tasks).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\",\n  \"task_id\": \"\",\n  \"task\": {},\n  \"page\": 0,\n  \"limit\": 0,\n  \"task_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}