Skip to main content
Glama
jackdark425

Financial Modeling Prep (FMP) MCP Server

by jackdark425

get_most_active

Identify stocks with the highest trading volume to analyze market activity and liquidity trends for investment decisions.

Instructions

Get most actively traded stocks by volume

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The tool 'get_most_active' is registered and implemented in src/tools/market.ts. The handler fetches data from the '/most-actives' endpoint of the FMP API.
    server.registerTool(
      'get_most_active',
      {
        description: 'Get most actively traded stocks by volume',
        inputSchema: z.object({}),
      },
      async () => {
        try {
          const data = await fetchFMP<MarketMover[]>('/most-actives');
          return jsonResponse(data);
        } catch (error) {
          return errorResponse(error);
        }
      }
    );

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/jackdark425/aigroup-fmp-mcp'

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