drio
Open app

Unifai Mcp Server

Source

Catalog onlyCatalog onlySTDIO

Overview

Unifai MCP Server is a part of the UnifAI SDKs that provides a framework for building and managing microservices in TypeScript and Python.

To use the Unifai MCP Server, refer to the documentation for the TypeScript MCP Server here and for the Python MCP Server here.

  • Supports both TypeScript and Python for microservice development. - Easy integration with UnifAI SDKs. - Provides tools for managing microservices efficiently.
  1. Developing scalable microservices for applications.
  2. Integrating various services within the UnifAI ecosystem.
  3. Facilitating communication between different components of a software architecture.

Add to your AI client

Use these steps to connect Unifai 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": {
    "unifai-mcp-server-unifai-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-unifai-mcp-server-unifai-network"
      ]
    }
  }
}

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": {
    "unifai-mcp-server-unifai-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-unifai-mcp-server-unifai-network"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What programming languages does Unifai MCP Server support?

Unifai MCP Server supports both TypeScript and Python.

Is there any cost associated with using Unifai MCP Server?

No, Unifai MCP Server is free to use as part of the UnifAI SDKs.

Where can I find the documentation?

Documentation for the TypeScript MCP Server can be found [here](https://github.com/unifai-network/unifai-sdk-py?tab=readme-ov-file) and for the Python MCP Server [here](https://github.com/unifai-network/unifai-sdk-js?tab=readme-ov-file).