We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/karthik78180/fast-mcp-local'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_server.py•341 B
"""Unit tests for the FastMCP server."""
import pytest
from fast_mcp_local.server import search_documents, get_all_documents, get_document
def test_server_imports():
"""Test that server module and tools can be imported."""
assert callable(search_documents)
assert callable(get_all_documents)
assert callable(get_document)