Get Agent Value Keys

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://bump.sh/agentsa/doc/agentsa/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Agent.sa MCP server": {
  "url": "https://bump.sh/agentsa/doc/agentsa/mcp"
}
Close
GET /Integration/Agent/Values

Retrieves the predefined keys (variables) that your agent is configured to use in conversations.

Responses

  • 200 application/json

    Agent value keys retrieved successfully.

    Hide response attribute Show response attribute object
    • data array[string]
  • 401

    Missing or invalid bearer token.

GET /Integration/Agent/Values
curl \
 --request GET 'https://velents-agents.velents.ai/Integration/Agent/Values' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "data": [
    "company_name",
    "order_id",
    "customer_name"
  ]
}