Skip to main content
Glama
nickweedon

Skeleton MCP Server

by nickweedon
conftest.py1.02 kB
""" Pytest Configuration and Fixtures This module provides shared fixtures for all tests. """ import pytest @pytest.fixture def sample_item() -> dict: """Provide a sample item for testing.""" return { "id": "test-item-1", "name": "Test Item", "description": "A test item for unit tests", "created_at": "2024-01-01T00:00:00Z", "updated_at": "2024-01-01T00:00:00Z", } @pytest.fixture def sample_items() -> list[dict]: """Provide a list of sample items for testing.""" return [ { "id": "test-item-1", "name": "Test Item 1", "description": "First test item", "created_at": "2024-01-01T00:00:00Z", "updated_at": "2024-01-01T00:00:00Z", }, { "id": "test-item-2", "name": "Test Item 2", "description": "Second test item", "created_at": "2024-01-02T00:00:00Z", "updated_at": "2024-01-02T00:00:00Z", }, ]

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/nickweedon/playwritght-proxy-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server