We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/phields/unusualwhales-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•444 B
// Main entry point - export core tools and schemas
export * from "./tools.js";
// Export MCP server
export * from "./server.js";
// Export types and schemas
export type {
EnvironmentConfig
} from "./tools.js";
// Convenience exports for common usage patterns
export {
UnusualWhalesMcp,
createUnusualWhalesMcp,
unusualWhalesMcp
} from "./server.js";
export {
initializeUnusualWhalesAPI,
getUnusualWhalesAPI
} from "./tools.js";