{
  "info": {
    "name": "Inistate — mcp.ai",
    "description": "REST API for the Inistate 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/inistate",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "inistate_bulk_change_entry_states",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/change/entry/states",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "change",
            "entry",
            "states"
          ]
        },
        "description": "Request state transitions for 1-100 entries in one module. Inistate processes items sequentially and returns fail-soft per-item results; low confidence may flag and suppress individual transitions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"items\": \"\",\n  \"ai_model\": \"\",\n  \"ai_sources\": \"\",\n  \"module_name\": \"\",\n  \"ai_reasoning\": \"\",\n  \"workspace_id\": \"\",\n  \"ai_confidence\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inistate_bulk_update_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bulk/update/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bulk",
            "update",
            "entries"
          ]
        },
        "description": "Update fields on 1-100 entries in one module. Inistate processes items sequentially and returns fail-soft per-item results, so one failure does not roll back or stop the remaining updates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"items\": \"\",\n  \"ai_model\": \"\",\n  \"ai_sources\": \"\",\n  \"module_name\": \"\",\n  \"ai_reasoning\": \"\",\n  \"workspace_id\": \"\",\n  \"ai_confidence\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inistate_change_entry_state",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/change/entry/state",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "change",
            "entry",
            "state"
          ]
        },
        "description": "Request a state transition for one module record; low confidence can flag the result and suppress the transition.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"state\": \"\",\n  \"ai_model\": \"\",\n  \"entry_id\": \"\",\n  \"ai_sources\": \"\",\n  \"module_name\": \"\",\n  \"ai_reasoning\": \"\",\n  \"workspace_id\": \"\",\n  \"ai_confidence\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inistate_create_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "entry"
          ]
        },
        "description": "Create one record in a module through its create activity and return whether low confidence caused it to be flagged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"input\": {},\n  \"ai_model\": \"\",\n  \"ai_sources\": \"\",\n  \"module_name\": \"\",\n  \"ai_reasoning\": \"\",\n  \"workspace_id\": \"\",\n  \"ai_confidence\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inistate_get_activity_form",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/activity/form",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "activity",
            "form"
          ]
        },
        "description": "Get the required fields, current values, options, defaults, and confidence threshold for a module activity before submitting it.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"activity\": \"\",\n  \"entry_id\": \"\",\n  \"module_name\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inistate_get_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "entry"
          ]
        },
        "description": "Get one module record by ID, including its current values, state, audit metadata, and available activities.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"entry_id\": \"\",\n  \"module_name\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inistate_get_entry_history",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/entry/history",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "entry",
            "history"
          ]
        },
        "description": "Return one chronological 50-item page of a record's audit trail, comments, field changes, and AI traceability context. Pagination is explicit and zero-based because Inistate does not document a contin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"entry_id\": \"\",\n  \"module_name\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inistate_get_module_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/module/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "module",
            "schema"
          ]
        },
        "description": "Get a module's fields and states, optionally including its activities and flows, before querying or changing records.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"detail\": \"\",\n  \"module_name\": \"\",\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inistate_list_entries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/entries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "entries"
          ]
        },
        "description": "Return one page of records from a module using a saved listing, field filters, search, sorting, and field projection.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"state\": \"\",\n  \"fields\": \"\",\n  \"search\": \"\",\n  \"filters\": \"\",\n  \"listing\": \"\",\n  \"sort_by\": \"\",\n  \"page_size\": 0,\n  \"module_name\": \"\",\n  \"next_cursor\": \"\",\n  \"workspace_id\": \"\",\n  \"sort_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inistate_list_modules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/modules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "modules"
          ]
        },
        "description": "List modules available in a workspace so their exact names can be used in schema and record tools.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"workspace_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inistate_list_workspaces",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/workspaces",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "workspaces"
          ]
        },
        "description": "List workspaces accessible to the connected API key, optionally filtering by workspace name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"search\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "inistate_update_entry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/entry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "entry"
          ]
        },
        "description": "Update fields on one existing module record through its edit activity and return whether low confidence caused it to be flagged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"input\": {},\n  \"ai_model\": \"\",\n  \"entry_id\": \"\",\n  \"ai_sources\": \"\",\n  \"module_name\": \"\",\n  \"ai_reasoning\": \"\",\n  \"workspace_id\": \"\",\n  \"ai_confidence\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}