VeyraX

VeyraX

VeyraX MCP is the only connection you need to access all your tools in any MCP-compatible environment.

2.2K

3 Tools

Packaged by
Requires Secrets
Add to Docker Desktop

Version 4.43 or later needs to be installed to add the server automatically

About

VeyraX MCP Server

VeyraX MCP is the only connection you need to access all your tools in any MCP-compatible environment.

What is an MCP Server?

Characteristics

AttributeDetails
Docker Imagemcp/veyrax
AuthorVeyraX
Repositoryhttps://github.com/VeyraX/veyrax-mcp
Dockerfilehttps://github.com/VeyraX/veyrax-mcp/blob/main/Dockerfile
Docker Image built byDocker Inc.
Docker Scout Health ScoreDocker Scout Health Score
Verify SignatureCOSIGN_REPOSITORY=mcp/signatures cosign verify mcp/veyrax --key https://raw.githubusercontent.com/docker/keyring/refs/heads/main/public/mcp/latest.pub
Licence

Available Tools (3)

Tools provided by this ServerShort 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.

Tools Details

Tool: 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."

ParametersTypeDescription
flowIdstringThe ID of the workflow to retrieve.

Tool: 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). "

ParametersTypeDescription
questionstringQuery 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.
toolstringGuess 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: 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."

ParametersTypeDescription
methodstringThe method of the tool to call (e.g., 'get_messages', 'send_message', 'list_events')
toolstringThe name of the tool to call (e.g., 'gmail', 'google-calendar', 'slack')
parametersobjectoptionalThe parameters required by the specific tool method being called, it is MUST HAVE field.
questionstringoptionalUser 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.

Use this MCP Server

{
  "mcpServers": {
    "veyrax": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "VEYRAX_API_KEY",
        "mcp/veyrax"
      ],
      "env": {
        "VEYRAX_API_KEY": "your-veyrax-api-key-here"
      }
    }
  }
}

Why is it safer to run MCP Servers with Docker?

Manual installation

You can install the MCP server using:

Installation for

Related servers