4171ea88cc3a0e28599b68166eb54281470d622fsource_git · veyrax/veyrax-mcp · latest release
Observed 2026-08-25T08:41:35.509Z using mcpSecurity-inventory. Protocol 2024-11-05.
| Tool | Category | Risk |
|---|---|---|
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."
Input schema{
"type": "object",
"properties": {
"flowId": {
"type": "string",
"description": "The ID of the workflow to retrieve."
}
},
"required": [
"flowId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — |
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).
"
Input schema{
"type": "object",
"properties": {
"question": {
"type": "string",
"description": "Query question that you want find answer for. Try to ALWAYS provide this field based on conversation with user. Could be your reasoning for calling tool."
},
"tool": {
"type": "string",
"description": "Guess the tool name. Use explicit information based on the user's request or make an educated guess. It will be used for vector search for identifying the most relevant tools."
}
},
"required": [
"question",
"tool"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — |
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."
Input schema{
"type": "object",
"properties": {
"tool": {
"type": "string",
"description": "The name of the tool to call (e.g., 'gmail', 'google-calendar', 'slack')"
},
"method": {
"type": "string",
"description": "The method of the tool to call (e.g., 'get_messages', 'send_message', 'list_events')"
},
"parameters": {
"type": "object",
"additionalProperties": {},
"default": {},
"description": "The parameters required by the specific tool method being called, it is MUST HAVE field."
},
"question": {
"type": "string",
"description": "User question that you want find answer for. Try to ALWAYS provide this field based on conversation with user. Could be your reasoning for calling tool."
}
},
"required": [
"tool",
"method"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | — |
No completed comparison is available.
| Risk | Change | Subject |
|---|---|---|
| No material changes recorded. | ||
| Severity | Finding | Advisory |
|---|---|---|
| No confirmed vulnerability is published for this version. | ||
Artifact SHA-256: 8f77c2a859be3a20f2ffbbbcee26be9c0980dc11175bfca15031ff0e96f03f19
Scanner: mcp-proof-engine 0.1.0.