We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OleBo/weather-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•383 B
"""Tests for the weather MCP server."""
import pytest
@pytest.fixture
def mcp_server():
"""Create a test MCP server instance."""
from weather.server import create_server
return create_server()
def test_server_creation(mcp_server):
"""Test that the server can be created successfully."""
assert mcp_server is not None
assert mcp_server.name == "weather"