WebMCP Registry

devops_run_migration

verifiedv0.1

Run a database migration. Simulated demo; registered by the /devops page.

Updated 7/11/2026 · Created 7/11/2026

Input Schema

{
  "type": "object",
  "required": [
    "direction",
    "version"
  ],
  "properties": {
    "version": {
      "type": "string",
      "description": "Migration version identifier"
    },
    "direction": {
      "enum": [
        "up",
        "down"
      ],
      "type": "string",
      "description": "Migration direction"
    }
  }
}

Full Contract

{
  "name": "devops_run_migration",
  "description": "Run a database migration. Simulated demo; registered by the /devops page.",
  "inputSchema": {
    "type": "object",
    "required": [
      "direction",
      "version"
    ],
    "properties": {
      "version": {
        "type": "string",
        "description": "Migration version identifier"
      },
      "direction": {
        "enum": [
          "up",
          "down"
        ],
        "type": "string",
        "description": "Migration direction"
      }
    }
  }
}

GET /api/tool/agentk.stacktr.ee/devops_run_migration