Skip to main content
GET
/
tools
/
{tool_name}
Get detailed tool information
curl --request GET \
  --url https://api.agent-corex.com/v1/tools/{tool_name} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "name": "create-pull-request",
    "server": "github-mcp",
    "description": "Create a new pull request on GitHub",
    "category": "version-control",
    "tags": [
      "github",
      "git",
      "pr",
      "collaboration"
    ],
    "inputSchema": {
      "type": "object",
      "properties": {
        "repository": {
          "type": "string"
        },
        "title": {
          "type": "string"
        },
        "from_branch": {
          "type": "string"
        },
        "to_branch": {
          "type": "string"
        }
      }
    },
    "outputSchema": {
      "type": "object",
      "properties": {
        "pr_number": {
          "type": "integer"
        },
        "pr_url": {
          "type": "string"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

JWT token obtained from dashboard

Path Parameters

tool_name
string
required

Name of the tool

Response

Tool information retrieved successfully

success
boolean
data
object
meta
object