Skip to main content
Glama
phuihock

TA-Lib MCP Server

by phuihock
test_client.py662 B
import asyncio from mcp import ClientSession, StdioServerParameters from mcp.client.stdio import stdio_client async def main(): server_params = StdioServerParameters( command="uv", args=["run", "mcp-talib"], ) async with stdio_client(server_params) as (reader, writer): async with ClientSession(reader, writer) as session: await session.initialize() # List tools result = await session.list_tools() print("Available tools:") for tool in result.tools: print(f"- {tool.name}: {tool.description}") if __name__ == "__main__": asyncio.run(main())

Latest Blog Posts

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/phuihock/mcp-talib'

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