We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jimmyliao/ms-agentframework'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•359 B
"""
MCP-MAF: Microsoft Agent Framework with MCP Protocol
A production-ready implementation of Microsoft Agent Framework integrated
with the Model Context Protocol (MCP), providing SSE/HTTP streamable transport.
"""
__version__ = "1.0.0"
__author__ = "Jimmy Liao"
__license__ = "MIT"
from .agent import MCPMAFAgent
__all__ = ["MCPMAFAgent", "__version__"]