MCP server intelligence profile

Orderly Network MCP Server

The Orderly Network MCP server gives AI assistants direct access to Orderly documentation, SDK patterns, API references, workflows, and contract addresses through a single MCP integration.

Local OnlyOfficial distributionOrderlyNetwork
Verified cleanNpm · 1.4.2

Our scanner tested version 1.4.2 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

1Distribution channel
9Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install @orderly.network/mcp-server from npm

Version 1.4.2 declares 1 executable entrypoint.

npm install --save-exact @orderly.network/mcp-server@1.4.2
npx -y -p @orderly.network/mcp-server@1.4.2 @orderly.network/mcp-server
MCP client configuration example
{
  "mcpServers": {
    "@orderly.network/mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@orderly.network/mcp-server@1.4.2",
        "@orderly.network/mcp-server"
      ]
    }
  }
}

Identity

Canonical slugorderly-network-mcp-server-75968eb5DeploymentLocal Only
Canonical packagenpm:@orderly.network/mcp-serverRepositoryOrderlyNetwork/orderly-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@orderly.network/mcp-server1.4.21Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@orderly.network/mcp-server1.4.2CurrentSep 5, 20269 toolsPartial · 9 resources · 0 promptsFailed
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

Provenanceartifact_hash_verifiedSignature
MCP SDK@modelcontextprotocol/sdk Artifact SHA-2560b529b2ae22cd8f3940e4028570c2d52f522d134ca077833c59d10222975aab1
Scannermcp-proof-engine 0.1.0Scan completedAug 26, 2026
Security rating27 / 100Methodologyversion-rating-1.0
Executable entrypoints
[
  "@orderly.network/mcp-server"
]
Rating reasons
[
  "security_policy_not_observed"
]

Current protocol inventory

2025-06-18Negotiated protocol
orderly-network-mcpServer-reported name
2Capability groups
Aug 26, 2026Observed

Tools 9

ToolCategoryAnnotationsRisk
explain_workflowGet step-by-step explanation of common Orderly development workflows
Input schema
{
  "type": "object",
  "properties": {
    "workflow": {
      "type": "string",
      "description": "Workflow topic, name fragment, or natural-language description (e.g., 'wallet connection', 'deposit', 'setting up react sdk', 'placing orders'). Matches are fuzzy — partial words and multi-word queries work."
    }
  },
  "required": [
    "workflow"
  ]
}
get_api_infoGet information about Orderly REST API endpoints or WebSocket streams
Input schema
{
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "API type ('rest', 'websocket', or 'auth')"
    },
    "endpoint": {
      "type": "string",
      "description": "Specific endpoint or stream name (e.g., '/v1/order', 'orderbook', 'position')"
    }
  },
  "required": [
    "type"
  ]
}
get_component_guideGet guidance on building React UI components using Orderly SDK
Input schema
{
  "type": "object",
  "properties": {
    "component": {
      "type": "string",
      "description": "Component type (e.g., 'order-entry', 'orderbook', 'positions', 'wallet-connector')"
    },
    "complexity": {
      "type": "string",
      "description": "Guide complexity ('minimal', 'standard', 'advanced')",
      "default": "standard"
    }
  },
  "required": [
    "component"
  ]
}
get_contract_addressesGet smart contract addresses for Orderly on specific chains
Input schema
{
  "type": "object",
  "properties": {
    "chain": {
      "type": "string",
      "description": "Chain name (e.g., 'arbitrum', 'optimism', 'base', 'ethereum', 'solana')"
    },
    "contractType": {
      "type": "string",
      "description": "Contract type (e.g., 'vault', 'usdc', 'usdt') or 'all' for all contracts",
      "default": "all"
    },
    "network": {
      "type": "string",
      "description": "Network type ('mainnet' or 'testnet')",
      "default": "mainnet"
    }
  },
  "required": [
    "chain"
  ]
}
get_indexer_api_infoGet information about Orderly Indexer API for trading metrics, account events, trades, and volume statistics (rankings endpoints available via endpoint search)
Input schema
{
  "type": "object",
  "properties": {
    "endpoint": {
      "type": "string",
      "description": "Specific endpoint path or name (e.g., '/events_v2', 'daily_volume', 'ranking/positions')"
    },
    "category": {
      "type": "string",
      "description": "Filter by category (e.g., 'trading_metrics', 'events::events_api', 'trades::trades_api', 'trading_metrics::volume_statistic') - use instead of endpoint to see all endpoints in a category"
    }
  }
}
get_orderly_one_api_infoGet information about Orderly One API for DEX creation, graduation, and management
Input schema
{
  "type": "object",
  "properties": {
    "endpoint": {
      "type": "string",
      "description": "Specific endpoint path or name (e.g., '/dex', 'verify-tx', '/theme/modify')"
    },
    "category": {
      "type": "string",
      "description": "Filter by category (e.g., 'auth', 'dex', 'graduation', 'theme', 'stats', 'leaderboard', 'admin')"
    }
  }
}
get_public_info_api_infoGet information about the Orderly Public Info API — a zero-auth single endpoint (POST /v1/public/query) for market, account, and platform data via a `type` field. Covers 24 query types (marketSummary, accountState, orderbook, candles, topAddresses, etc.)
Input schema
{
  "type": "object",
  "properties": {
    "queryType": {
      "type": "string",
      "description": "Query type name (e.g., \"marketSummary\", \"accountState\", \"orderbook\", \"candles\", \"topAddresses\", \"whaleContext\"). Returns full details: params, response fields, example, weight, freshness."
    },
    "category": {
      "type": "string",
      "description": "Browse a category instead: \"market\", \"account\", \"platform\", or \"system\". Use instead of queryType to list all types in a category."
    }
  }
}
get_strategy_vault_api_infoGet information about Orderly Strategy Vault API for yield optimization, strategy providers, and liquidity providers
Input schema
{
  "type": "object",
  "properties": {
    "endpoint": {
      "type": "string",
      "description": "Specific endpoint path or name (e.g., '/v1/public/strategy_vault/vault/info', 'sp/info')"
    },
    "category": {
      "type": "string",
      "description": "Filter by category (e.g., 'strategy_vault_info', 'strategy_provider', 'fund_management', 'liquidity_provider', 'user') - use instead of endpoint to see all endpoints in a category"
    }
  }
}
search_orderly_docsSearch Orderly Network documentation for specific topics, concepts, or questions
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Search query about Orderly Network (e.g., 'how does the vault work', 'trading fees', 'order types')"
    },
    "limit": {
      "type": "number",
      "description": "Maximum number of results to return (default: 5)",
      "default": 5
    },
    "scope": {
      "type": "string",
      "enum": [
        "auto",
        "docs",
        "sdk"
      ],
      "description": "Which corpus to search: 'sdk' for type-accurate SDK symbols (hooks/components/types/functions), 'docs' for protocol documentation, or 'auto' (default) which detects intent from the query (camelCase/use* names → SDK, plain language → docs)",
      "default": "auto"
    }
  },
  "required": [
    "query"
  ]
}

Resources 9

  • Common Workflowsorderly://workflows

    Step-by-step workflows for common development tasks

  • Component Building Guidesorderly://sdk/components

    Guides for building UI components with Orderly SDK

  • Contract Addressesorderly://contracts

    Smart contract addresses across all supported chains

  • Indexer API Referenceorderly://api/indexer

    Indexer API for trading metrics, account events, trades, and volume statistics (rankings endpoints available via endpoint search)

  • Orderly Network Overvieworderly://overview

    High-level protocol architecture and key concepts

  • Public Info API Referenceorderly://api/public-info

    Zero-auth single-endpoint query API (POST /v1/public/query) for market, account, and platform data via a `type` field

  • REST API Referenceorderly://api/rest

    Complete REST API documentation

  • SDK Hooks Referenceorderly://sdk/hooks

    Complete reference of all v2 SDK hooks

  • WebSocket API Referenceorderly://api/websocket

    Real-time WebSocket streams documentation

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Orderly Network MCP Server questions

How do I install Orderly Network MCP Server?

Install the selected package version with: npm install --save-exact @orderly.network/mcp-server@1.4.2

What tools does Orderly Network MCP Server provide?

Orderly Network MCP Server exposed 9 tools during independent protocol observation, including explain_workflow, get_api_info, get_component_guide, get_contract_addresses, get_indexer_api_info, get_orderly_one_api_info, get_public_info_api_info, get_strategy_vault_api_info, and others.

Is Orderly Network MCP Server secure?

Our scanner tested version 1.4.2 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.