We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nickweedon/mcp_server_template'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
test_server.py•538 B
"""
Tests for the MCP Server
Tests the server initialization and tool registration.
"""
import pytest
from skeleton_mcp.server import mcp
class TestServerSetup:
"""Tests for server configuration."""
def test_server_name(self):
"""Test that the server has the correct name."""
assert mcp.name == "Skeleton MCP Server"
def test_server_has_instructions(self):
"""Test that the server has instructions defined."""
assert mcp.instructions is not None
assert len(mcp.instructions) > 0