We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/chris-jelly/py-todoist-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_server.py•476 B
"""Tests for the FastMCP server module."""
from fastmcp import FastMCP
from todoist_mcp import server
class TestMCPServer:
"""Tests for the FastMCP server instance."""
def test_mcp_instance_exists(self) -> None:
"""Test that mcp is a FastMCP instance."""
assert isinstance(server.mcp, FastMCP)
def test_mcp_instance_name(self) -> None:
"""Test that the server name is 'todoist-mcp'."""
assert server.mcp.name == "todoist-mcp"