We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cbyrohl/mcp-server-ads'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_resources.py•445 B
"""Tests for resources."""
from mcp_server_ads.resources.fields import get_fields
from mcp_server_ads.resources.syntax import get_syntax
def test_fields_resource():
result = get_fields()
assert "bibcode" in result
assert "author" in result
assert "citation_count" in result
def test_syntax_resource():
result = get_syntax()
assert "Boolean" in result
assert "author:" in result
assert "citations(" in result