We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/acidsolution/schwab-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•407 B
"""
Schwab MCP Server
A read-only Model Context Protocol (MCP) server for Charles Schwab API.
Enables Claude to analyze portfolios, quotes, options, and price history.
"""
__version__ = "0.1.0"
from .auth import Token, TokenManager
from .client import SchwabClient
from .config import Settings, settings
__all__ = [
"Token",
"TokenManager",
"SchwabClient",
"Settings",
"settings",
]