Open Context Protocol is live! 🚀 Read the launch post

botsInfo

Gets information about a bot user.

Details

  • Method: GET
  • Path: /bots.info
  • Operation ID: bots_info

Parameters

{
  "token": {
    "description": "Authentication token. Requires scope: `users:read`",
    "required": true,
    "location": "query",
    "type": "string"
  },
  "bot": {
    "description": "Bot user to get info on",
    "required": false,
    "location": "query",
    "type": "string"
  }
}

Response Schema

{
  "additionalProperties": false,
  "description": "Schema for successful response from bots.info method",
  "properties": {
    "bot": {
      "additionalProperties": false,
      "properties": {
        "app_id": {
          "pattern": "^A[A-Z0-9]{1,}$",
          "title": "App ID",
          "type": "string"
        },
        "deleted": {
          "type": "boolean"
        },
        "icons": {
          "additionalProperties": false,
          "properties": {
            "image_36": {
              "format": "uri",
              "type": "string"
            },
            "image_48": {
              "format": "uri",
              "type": "string"
            },
            "image_72": {
              "format": "uri",
              "type": "string"
            }
          },
          "required": [
            "image_36",
            "image_48",
            "image_72"
          ],
          "type": "object"
        },
        "id": {
          "pattern": "^B[A-Z0-9]{8,}$",
          "title": "Bot User ID",
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "updated": {
          "type": "integer"
        },
        "user_id": {
          "pattern": "^[UW][A-Z0-9]{2,}$",
          "title": "User ID",
          "type": "string"
        }
      },
      "required": [
        "id",
        "deleted",
        "name",
        "updated",
        "app_id",
        "icons"
      ],
      "type": "object"
    },
    "ok": {
      "enum": [
        true
      ],
      "title": "default success response",
      "type": "boolean"
    }
  },
  "required": [
    "ok",
    "bot"
  ],
  "title": "bots.info schema",
  "type": "object"
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('slack')

# Call this tool
result = await agent.call_tool('botsInfo', {
    # Add required parameters here
})