Skip to main content
Beta Release: Pazy MCP is currently in beta. To get your API key, please email us at [email protected].

Claude Desktop

Set up Pazy with Claude Desktop for powerful financial AI conversations

Cursor

Integrate Pazy with Cursor for AI-powered financial coding assistance

What is MCP Server?

The Model Context Protocol (MCP) allows AI assistants to securely access external data sources in real-time, enabling more intelligent and contextual responses.

Prerequisites

1

Node.js Installation

Ensure you have Node.js version 14 or higher installed on your system.
node --version
If you see an error, download Node.js from nodejs.org
2

Pazy API Key

To obtain your Pazy API key, Please mail [email protected]
Keep your API key secure and never share it publicly or commit it to version control.
3

AI Client

Have either Claude Desktop or Cursor installed on your machine.

Client Setup

Step 1: Access Configuration

1

Download Claude Desktop

If you haven’t already, download Claude Desktop for your operating system.
2

Open Settings

  1. Click “Claude” in the menu bar
  2. Select “Settings…”
  3. Navigate to “Developer” in the left sidebar
  4. Click “Edit Config”
  1. Right-click the Claude system tray icon
  2. Select “Settings…”
  3. Navigate to “Developer” in the left sidebar
  4. Click “Edit Config”

Step 2: Configure Pazy

Replace your configuration file contents with:
{
  "mcpServers": {
    "pazy": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.pazy.io/mcp",
        "--header",
        "Authorization:Api-Key ${PAZY_API_KEY}",
        "--transport",
        "http-only"
      ],
      "env": {
        "PAZY_API_KEY": "your-pazy-api-key-here"
      }
    }
  }
}
Replace your-pazy-api-key-here with your actual Pazy API key.

Step 3: Verify Setup

  1. Restart Claude Desktop completely
  2. Look for the hammer icon (🔨) in the bottom-left corner
  3. Click the icon to see available Pazy tools
If you don’t see the hammer icon, check the troubleshooting section below.

Troubleshooting

1

Verify API Key

Ensure your API key is correctly set
2

Check Node.js

Run node --version to confirm Node.js is installed.
3

Review Logs

macOS: ~/Library/Logs/Claude/mcp*.logWindows: %APPDATA%\Claude\logs\mcp*.log

Configuration Issues

  • Verify JSON syntax is correct, Ensure all required fields are present, Check for typos in the configuration
Solution: Install Node.js from nodejs.org
# Verify installation
node --version
npm --version
Solution: Check your API key
  • Ensure it’s correctly copied
Solution: Network connectivity
  • Check internet connection
  • Verify firewall settings

Getting Help

Documentation

Official MCP documentation and guides

Pazy Support

Contact our support team for assistance

Community

Join the MCP community discussions
This configuration works with most modern MCP clients. If you’re using a different AI assistant that supports the MCP Protocol, the same setup should work with minimal modifications.