VeyraX MCP is the only connection you need to access all your tools in any MCP-compatible environment.
2.2K
3 Tools
Version 4.43 or later needs to be installed to add the server automatically
Use cases
About
VeyraX MCP is the only connection you need to access all your tools in any MCP-compatible environment.
Attribute | Details |
---|---|
Docker Image | mcp/veyrax |
Author | VeyraX |
Repository | https://github.com/VeyraX/veyrax-mcp |
Dockerfile | https://github.com/VeyraX/veyrax-mcp/blob/main/Dockerfile |
Docker Image built by | Docker Inc. |
Docker Scout Health Score | |
Verify Signature | COSIGN_REPOSITORY=mcp/signatures cosign verify mcp/veyrax --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub |
Licence |
Tools provided by this Server | Short Description |
---|---|
get_flow | "Use this tool to retrieve a specific workflow by its ID. |
get_tools | "Use this tool to retrieve a list of available tools from the Veyrax API. |
tool_call | "Use this tool to execute a specific method of another tool with the provided parameters based on get-tools tool response. |
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."
Parameters | Type | Description |
---|---|---|
flowId | string | The ID of the workflow to retrieve. |
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). "
Parameters | Type | Description |
---|---|---|
question | string | 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 | string | 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. |
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."
Parameters | Type | Description |
---|---|---|
method | string | The method of the tool to call (e.g., 'get_messages', 'send_message', 'list_events') |
tool | string | The name of the tool to call (e.g., 'gmail', 'google-calendar', 'slack') |
parameters | object optional | The parameters required by the specific tool method being called, it is MUST HAVE field. |
question | string optional | 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. |
{
"mcpServers": {
"veyrax": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"VEYRAX_API_KEY",
"mcp/veyrax"
],
"env": {
"VEYRAX_API_KEY": "your-veyrax-api-key-here"
}
}
}
}
Manual installation
You can install the MCP server using:
Installation for