Skip to main content
Glama
aadarshvelu

Derive MCP Server

by aadarshvelu

get_latest_signed_feeds

Retrieve current oracle price feeds for currencies and instruments from Derive.xyz market data. Filter by currency or expiry to access real-time financial information.

Instructions

Get current oracle price feeds

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
currencyNoCurrency filter (defaults to all)
expiryNoExpiry filter (0 for spot/perp only, defaults to all)

Implementation Reference

  • The handler implementation for 'get_latest_signed_feeds' which calls the API.
    getLatestSignedFeeds(params: GetLatestSignedFeedsParams): Promise<unknown> {
      return this.post('public/get_latest_signed_feeds', params);
    }
  • The type definition for 'GetLatestSignedFeedsParams'.
    export interface GetLatestSignedFeedsParams {
      currency?: string;
      expiry?: number;
  • src/tools.ts:153-163 (registration)
    Tool registration definition for 'get_latest_signed_feeds'.
    {
      name: 'get_latest_signed_feeds',
      description: 'Get current oracle price feeds',
      inputSchema: {
        type: 'object',
        properties: {
          currency: { type: 'string', description: 'Currency filter (defaults to all)' },
          expiry: { type: 'integer', description: 'Expiry filter (0 for spot/perp only, defaults to all)' },
        },
      },
    },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/aadarshvelu/derive-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server