Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
VEYRAX_API_KEY | Yes | Your VeyraX API key found in your VeyraX dashboard |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get_tools | "Use this tool to retrieve a list of available tools from the Veyrax API. This will return dynamic tools that user has access to. You can use this tool to get the list of tools, method names and parameters, and then use tool_call tool to call the tool with the provided parameters. This method also returns all flows with name and id that user has access to (if any). " |
tool_call | "Use this tool to execute a specific method of another tool with the provided parameters based on get-tools tool response. You need to specify the tool name, method name, and any required parameters for that method." |
get_flow | "Use this tool to retrieve a specific workflow by its ID. Workflow is sequence of steps that are executed in order to get some result. Flow comes with description, steps and input schema of all methods to call. You can call this tool once you have a flowId which usually you can get from: user directly OR using get-tools method." |