Skip to main content
Glama

IBKR TWS MCP Server

by haymant
test_fastmcp_methods.py439 B
#!/usr/bin/env python3 """Check FastMCP available methods""" from mcp.server.fastmcp import FastMCP mcp = FastMCP("Test") print("Available methods on FastMCP instance:") for attr in dir(mcp): if not attr.startswith('_'): print(f" - {attr}") print("\nMethods containing 'app' or 'http':") for attr in dir(mcp): if 'app' in attr.lower() or 'http' in attr.lower(): print(f" - {attr}: {type(getattr(mcp, attr))}")

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/haymant/tws-mcp'

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