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
server.py•327 B
"""Server entry point for TA-Lib MCP Server."""
import asyncio
import sys
from .cli import main
def start() -> None:
"""Start server with default arguments."""
asyncio.run(main())
def server_main():
"""Server entry point for package scripts."""
asyncio.run(main())
if __name__ == "__main__":
start()