Skip to main content
Glama

Financial Modeling Prep MCP Server

Apache 2.0
17
59
  • Linux
  • Apple
SessionConfigSchema.ts917 B
import { z } from "zod"; /** * Zod schema for session configuration used by the stateful server. * Note: Token optionality and descriptions may be adapted in a subsequent step. */ export const SessionConfigSchema = z.object({ FMP_ACCESS_TOKEN: z .string() .optional() .describe( "Financial Modeling Prep API access token. Optional for server initialization; required to successfully call FMP-backed tools." ), FMP_TOOL_SETS: z .string() .optional() .describe( "Comma-separated list of tool sets to load (e.g., 'search,company,quotes'). If not specified, all tools will be loaded." ), DYNAMIC_TOOL_DISCOVERY: z .string() .optional() .describe( "Enable dynamic toolset management. Set to 'true' to use meta-tools for runtime toolset loading. Default is 'false'." ), }); export type SessionConfigInput = z.infer<typeof SessionConfigSchema>;

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/imbenrabi/Financial-Modeling-Prep-MCP-Server'

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