{
  "info": {
    "name": "FutureAGI — mcp.ai",
    "description": "REST API for the FutureAGI 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/futureagi",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "futureagi_list_agent_definitions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/agent/definitions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "agent",
            "definitions"
          ]
        },
        "description": "List one page of agent definitions in the connected FutureAGI organization, optionally filtering by type, name, assistant ID, or agent ID. Returns next_cursor to continue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"search\": \"\",\n  \"agent_type\": \"\",\n  \"next_cursor\": \"\",\n  \"agent_definition_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "futureagi_list_annotation_labels",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/annotation/labels",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "annotation",
            "labels"
          ]
        },
        "description": "List one page of FutureAGI annotation labels by type, name, project, or dataset, optionally including usage counts. Returns next_cursor to continue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"limit\": 0,\n  \"search\": \"\",\n  \"dataset\": \"\",\n  \"project_id\": \"\",\n  \"next_cursor\": \"\",\n  \"include_usage_count\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "futureagi_list_annotation_queues",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/annotation/queues",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "annotation",
            "queues"
          ]
        },
        "description": "List one page of FutureAGI annotation queues by status or name, optionally including item counts. Returns next_cursor to continue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"search\": \"\",\n  \"status\": \"\",\n  \"page_size\": 0,\n  \"next_cursor\": \"\",\n  \"include_counts\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "futureagi_list_custom_eval_configs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/custom/eval/configs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "custom",
            "eval",
            "configs"
          ]
        },
        "description": "List custom evaluation configurations, optionally restricted to a FutureAGI project or evaluation task.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"task_id\": \"\",\n  \"project_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "futureagi_list_datasets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/datasets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "datasets"
          ]
        },
        "description": "List one page of datasets in the connected FutureAGI organization, optionally searching by name. Returns next_cursor to continue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page_size\": 0,\n  \"next_cursor\": \"\",\n  \"search_text\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "futureagi_list_eval_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/eval/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "eval",
            "tasks"
          ]
        },
        "description": "List one page of FutureAGI evaluation tasks, optionally filtering by project ID or task name. Returns next_cursor to continue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page_size\": 0,\n  \"project_id\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "futureagi_list_personas",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/personas",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "personas"
          ]
        },
        "description": "List one page of built-in and workspace personas for FutureAGI simulations, with type, simulation-mode, and text filters. Returns next_cursor to continue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"limit\": 0,\n  \"search\": \"\",\n  \"next_cursor\": \"\",\n  \"simulation_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "futureagi_list_run_tests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/run/tests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "run",
            "tests"
          ]
        },
        "description": "List one page of configured FutureAGI run tests without executing them, optionally filtering by name, source type, or prompt template. Returns next_cursor to continue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"search\": \"\",\n  \"next_cursor\": \"\",\n  \"simulation_type\": \"\",\n  \"prompt_template_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "futureagi_list_scenarios",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/scenarios",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "scenarios"
          ]
        },
        "description": "List one page of FutureAGI simulation scenarios, optionally filtering by agent definition, agent type, or search text. Returns next_cursor to continue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"search\": \"\",\n  \"agent_type\": \"\",\n  \"next_cursor\": \"\",\n  \"agent_definition_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}