{
  "info": {
    "name": "EVO Academia — mcp.ai",
    "description": "REST API for the EVO Academia 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/evo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "evo_activity_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/activity/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "activity",
            "list"
          ]
        },
        "description": "Read group activities/classes (turmas).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"id_branch\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_activity_schedule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/activity/schedule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "activity",
            "schedule"
          ]
        },
        "description": "Read group activities/classes (turmas).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"id_branch\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_activity_write",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/activity/write",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "activity",
            "write"
          ]
        },
        "description": "Enroll a member in a class or change an enrollment status.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_bank_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bank/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bank",
            "accounts"
          ]
        },
        "description": "List the gym's bank accounts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id_branch\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "configuration"
          ]
        },
        "description": "Get the gym/branch configuration (name, timezone, gateway, occupation, card flags).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id_branch\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_employees",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/employees",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "employees"
          ]
        },
        "description": "List gym employees/staff.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"take\": 0,\n  \"skip\": 0,\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "entries"
          ]
        },
        "description": "List gym entries (check-ins / turnstile access), optionally by member and date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_id\": \"\",\n  \"start_date\": \"\",\n  \"end_date\": \"\",\n  \"take\": 0,\n  \"skip\": 0,\n  \"account\": \"\",\n  \"member_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_get_member_count",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/member/count",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "member",
            "count"
          ]
        },
        "description": "Count of active members (drives the billing tier). Returns { active, total }.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_list_accounts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/accounts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "accounts"
          ]
        },
        "description": "List all EVO gyms/branches linked to this install.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_member_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/member/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "member",
            "get"
          ]
        },
        "description": "Read gym members.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_ids\": \"\",\n  \"name\": \"\",\n  \"email\": \"\",\n  \"document\": \"\",\n  \"status\": \"\",\n  \"take\": 0,\n  \"skip\": 0,\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_member_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/member/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "member",
            "list"
          ]
        },
        "description": "Read gym members.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_ids\": \"\",\n  \"name\": \"\",\n  \"email\": \"\",\n  \"document\": \"\",\n  \"status\": \"\",\n  \"take\": 0,\n  \"skip\": 0,\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_membership",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/membership",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "membership"
          ]
        },
        "description": "List membership plans (planos) offered by the gym.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id_branch\": \"\",\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_prospect",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/prospect",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "prospect"
          ]
        },
        "description": "List prospects/leads (CRM).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"start_date\": \"\",\n  \"end_date\": \"\",\n  \"take\": 0,\n  \"skip\": 0,\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_prospect_write",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/prospect/write",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "prospect",
            "write"
          ]
        },
        "description": "Create or update a prospect/lead.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_receivables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/receivables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "receivables"
          ]
        },
        "description": "List receivables (contas a receber). Filter by date/status (PROBE: confirm param names).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start_date\": \"\",\n  \"end_date\": \"\",\n  \"member_id\": \"\",\n  \"take\": 0,\n  \"skip\": 0,\n  \"account\": \"\",\n  \"member_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_receivables_mark_received",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/receivables/mark/received",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "receivables",
            "mark",
            "received"
          ]
        },
        "description": "Mark a receivable as received/paid. PROBE: confirm body shape with a live gym.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_sales",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sales",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sales"
          ]
        },
        "description": "List sales (vendas) over a date range.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"start_date\": \"\",\n  \"end_date\": \"\",\n  \"take\": 0,\n  \"skip\": 0,\n  \"account\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "evo_sales_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sales/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sales",
            "create"
          ]
        },
        "description": "Create a sale (e.g. sell a membership/plan to a member). PROBE: confirm body shape.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}