We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ankimcp/anki-mcp-server-addon'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_model_tools.py•389 B
"""Tests for model/note type tools."""
from __future__ import annotations
from .helpers import call_tool
class TestModelTools:
"""Tests for model/note type tools."""
def test_model_names(self):
"""modelNames should return list of note types."""
result = call_tool("modelNames")
assert "modelNames" in result
assert len(result["modelNames"]) > 0