Post
1985
Another day, another release in
⭐https://github.com/mozilla-ai/any-agent ⭐
You can now use MCP (Model Context Protocol) tools via SSE (Server-Sent Events):
See SuperGateway for an easy way to turn a Stdio server into an SSE server.
⭐https://github.com/mozilla-ai/any-agent ⭐
You can now use MCP (Model Context Protocol) tools via SSE (Server-Sent Events):
from any_agent import AgentConfig, AnyAgent
from any_agent.config import MCPSseParams
agent = AnyAgent.create(
"smolagents",
AgentConfig(
model_id="gpt-4o-mini",
tools=[
MCPSseParams(
url="http://localhost:8000/sse"
),
]
)
)
agent.run("What do MCP and SSE mean?")
See SuperGateway for an easy way to turn a Stdio server into an SSE server.