Woofi Pro MCP Server

WOOFi Pro & Orderly trading tools

Local serverstdioTypeScript

What is the Woofi Pro MCP MCP server?

If you already use Woofi Pro MCP, the woofi pro mcp mcp server is the piece that lets your assistant work with it directly. WOOFi Pro & Orderly trading tools.

What the server does

A Model Context Protocol (MCP) server providing 40 comprehensive trading tools for WOOFi Pro and Orderly Network integration. Built for universal compatibility with Cursor IDE, Claude Desktop, Windsurf, and all MCP-compatible applications.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Category — Count
  • Account — 3
  • Orders — 18
  • Assets — 8
  • Positions — 3
  • Liquidations — 6
  • Funding — 1
  • Trading — The Trading tool exposed by this server

Credentials and setup notes

Configuration is passed through the environment: WOOFI_API_KEY, WOOFI_SECRET_KEY, WOOFI_ACCOUNT_ID, WOOFI_BROKER_ID, WOOFI_CHAIN_ID. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Installation

The server ships on npm as git, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Where it fits

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Woofi Pro MCP's toolset — Category, Account, Orders and 5 more — is a fair guide to whether it matches your workflow. It is maintained by DaunteEth; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Woofi Pro MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
CategoryCount
Account3
Orders18
Assets8
Positions3
Liquidations6
Funding1
TradingThe Trading tool exposed by this server.

How to install the Woofi Pro MCP MCP server

**Cursor IDE** *(`.cursor/mcp.json`)*
```json
{
  "mcpServers": {
    "woofi-pro": {
      "command": "npx",
      "args": [
        "-y",
        "git+https://github.com/DaunteEh/execution-agent.git",
        "woofi-pro"
      ],
      "env": {
        "WOOFI_API_KEY": "your_orderly_api_key_here",
        "WOOFI_SECRET_KEY": "your_orderly_secret_key_here",
        "WOOFI_ACCOUNT_ID": "your_account_id_here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
WOOFI_API_KEYCredential the server authenticates with.Yes
WOOFI_SECRET_KEYCredential the server authenticates with.Yes
WOOFI_ACCOUNT_IDConfiguration value read at startup.Optional
WOOFI_BROKER_IDConfiguration value read at startup.Optional
WOOFI_CHAIN_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Woofi Pro MCP to Category.
  • Use Woofi Pro MCP to Account.
  • Use Woofi Pro MCP to Orders.

Frequently asked questions

It connects Woofi Pro MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (Category, Account, Orders, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Woofi Pro MCP directly.