We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/abhiphile/fermat-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_algebra.py•258 B
import pytest
@pytest.mark.asyncio
async def test_algebra_expand(client):
resp = await client.call_tool(
"sympy_mcp_algebra_operation", {"operation": "expand", "expr": "(x + 1)**2"}
)
s = str(resp)
assert "x**2" in s and "2*x" in s