We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/schwim23/myaigist_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•261 B
"""
MCP-adapted agents for myaigist MCP server
Modified to work with single-user local deployment
"""
from .transcriber import Transcriber
from .qa_agent import QAAgent
from .vector_store import VectorStore
__all__ = ['Transcriber', 'QAAgent', 'VectorStore']