drio
Open app

MCP Server - Natural Language API Gateway for z-ap-server

Source

Catalog onlyCatalog onlySTDIO

Overview

MCP Server is a middleware service that allows users to interact with z-ap-server APIs using natural language queries through a FastAPI server. It integrates with Claude desktop on Mac to process natural language commands.

To use MCP Server, install the required dependencies, configure environment variables, and start the server. You can then send natural language queries to the /natural_language_request endpoint.

  • Natural language interface for API interactions - Integration with Claude desktop for command processing - User-friendly web interface for easier access
  1. Retrieving transaction details using simple language commands.
  2. Creating, updating, and deleting transactions without needing to know API specifics.
  3. Accessing user information and transaction types through natural language.

Add to your AI client

Use these steps to connect MCP Server - Natural Language API Gateway for z-ap-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": {
    "zoomrx-ap-mcp-server-aishwaryaeaswar": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zoomrx-ap-mcp-server-aishwaryaeaswar"
      ]
    }
  }
}

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

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "zoomrx-ap-mcp-server-aishwaryaeaswar": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zoomrx-ap-mcp-server-aishwaryaeaswar"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "zoomrx-ap-mcp-server-aishwaryaeaswar": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zoomrx-ap-mcp-server-aishwaryaeaswar"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "zoomrx-ap-mcp-server-aishwaryaeaswar": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-zoomrx-ap-mcp-server-aishwaryaeaswar"
      ]
    }
  }
}

FAQ

Can I use MCP Server without Claude desktop?

Yes, but you will need to provide an API key for processing natural language commands.

Is there a web interface available?

Yes, you can access a user-friendly HTML interface for easier interaction.

What programming language is MCP Server built with?

MCP Server is built using Python.