We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mattmahowald/sfmcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_server.py•294 B
from __future__ import annotations
from sfmcp.server import mcp, _register_all
def test_register_tools(env_setup: bool):
_register_all()
names = {t.name for t in mcp._tools} # type: ignore[attr-defined]
assert "salesforce.query" in names
assert "salesforce.describe" in names