Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Schwab Model Context Protocol Server
by
jkoelker
Verified
GitHub
Finance
Python
MIT License
1
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
schwab-mcp
src
schwab_mcp
tools
src/schwab_mcp/tools/account.py
src/schwab_mcp/tools/history.py
src/schwab_mcp/tools/__init__.py
src/schwab_mcp/tools/options.py
src/schwab_mcp/tools/orders.py
src/schwab_mcp/tools/quotes.py
src/schwab_mcp/tools/registry.py
src/schwab_mcp/tools/tools.py
src/schwab_mcp/tools/transactions.py
src/schwab_mcp/tools/utils.py
# from typing import Callable async def call(func: Callable, *args, **kwargs): """Call a method on the Schwab client""" response = await func(*args, **kwargs) response.raise_for_status() return response.text