We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IBM/mcp-context-forge'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# -*- coding: utf-8 -*-
"""Configuration for mutmut mutation testing framework."""
def pre_mutation(context):
"""Skip files that shouldn't be mutated."""
if context.filename.endswith("__init__.py"):
context.skip = True
elif "alembic" in context.filename:
context.skip = True
elif "migrations" in context.filename:
context.skip = True
# Skip gateway_service.py due to Python 3.11+ except* syntax not supported by mutmut parser
elif "gateway_service.py" in context.filename:
context.skip = True
def post_mutation(context):
"""Any post-mutation processing."""
pass