Skip to main content
Glama

Warpcast MCP Server

httpx_stub.py721 B
"""Minimal stub of the ``httpx`` module used for testing. This provides the ``AsyncClient`` class and ``HTTPError`` exception so that modules importing ``httpx`` can be loaded without the real dependency. All HTTP methods simply raise ``NotImplementedError``. """ class HTTPError(Exception): """Base HTTPX error class.""" class AsyncClient: async def __aenter__(self): return self async def __aexit__(self, exc_type, exc, tb): pass async def get(self, *args, **kwargs): raise NotImplementedError("AsyncClient.get is not implemented in the stub") async def post(self, *args, **kwargs): raise NotImplementedError("AsyncClient.post is not implemented in the stub")

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/zhangzhongnan928/mcp-warpcast-server'

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