Skip to main content
Glama

ClickUp Operator

by noah-vh
_stream.py871 B
from __future__ import annotations from typing import TypeVar import httpx from ..._client import Anthropic, AsyncAnthropic from ..._streaming import Stream, AsyncStream from ._stream_decoder import AWSEventStreamDecoder _T = TypeVar("_T") class BedrockStream(Stream[_T]): def __init__( self, *, cast_to: type[_T], response: httpx.Response, client: Anthropic, ) -> None: super().__init__(cast_to=cast_to, response=response, client=client) self._decoder = AWSEventStreamDecoder() class AsyncBedrockStream(AsyncStream[_T]): def __init__( self, *, cast_to: type[_T], response: httpx.Response, client: AsyncAnthropic, ) -> None: super().__init__(cast_to=cast_to, response=response, client=client) self._decoder = AWSEventStreamDecoder()

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/noah-vh/mcp-server-clickup'

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