Skip to main content
Glama

ClickUp Operator

by noah-vh
"""Parser for null types""" from __future__ import annotations from typing import Any, TYPE_CHECKING, Type from ..exceptions import BrokenSchemaError from .parser import ArgSchemaParser if TYPE_CHECKING: from ..json_type import JsonType from typing_extensions import TypeGuard class NoneParser(ArgSchemaParser[None]): """Parser for null types""" @property def argument_schema(self) -> dict[str, JsonType]: return {"type": "null"} @classmethod def can_parse(cls, argtype: Any) -> TypeGuard[Type[None]]: return argtype in [None, type(None)] def parse_value(self, value: JsonType) -> None: if value is not None: raise BrokenSchemaError(value, self.argument_schema)

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