drio
Open app

aivengers-mcp MCP server

Source

MCP server with dynamic tool searching/calling using AIvengers smart tools

Catalog onlyCatalog onlySTDIO

Overview

The aivengers-mcp is a dynamic MCP server that enables users to search for and call various AIvengers smart tools seamlessly.

To use aivengers-mcp, install the required component uv, configure the server with your AGIVERSE_API_KEY, and ensure appropriate configurations are set for your operating system.

  • Intent-based search for dynamic tools - Ability to call dynamic actions using the tool call function
  1. Integrating AIvengers tools into custom applications.
  2. Automating workflows with AI tool calls.
  3. Enhancing application functionalities by utilizing dynamic AI capabilities.

Add to your AI client

Use these steps to connect aivengers-mcp MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "aivengers-mcp-agiverse": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aivengers-mcp-agiverse"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "aivengers-mcp-agiverse": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aivengers-mcp-agiverse"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "aivengers-mcp-agiverse": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aivengers-mcp-agiverse"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "aivengers-mcp-agiverse": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aivengers-mcp-agiverse"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "aivengers-mcp-agiverse": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aivengers-mcp-agiverse"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "aivengers-mcp-agiverse": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-aivengers-mcp-agiverse"
      ]
    }
  }
}

FAQ

How do I get an AGIVERSE_API_KEY?

You can obtain your API key for free by registering at [AGIverse](https://app.agiverse.io/).

What do I need to install to run the server?

You need to install `uv` to operate the aivengers-mcp server.

Where can I find the installation instructions for `uv`?

Detailed installation instructions for `uv` can be found at [Installing uv](https://docs.astral.sh/uv/getting-started/installation/).