Skip to main content
Glama
kaman05010

MCP Wikipedia Server

by kaman05010
typing.py1.3 kB
from __future__ import annotations from typing import Union from typing_extensions import TypeVar from langgraph._internal._typing import StateLike __all__ = ( "StateT", "StateT_co", "StateT_contra", "InputT", "OutputT", "ContextT", ) StateT = TypeVar("StateT", bound=StateLike) """Type variable used to represent the state in a graph.""" StateT_co = TypeVar("StateT_co", bound=StateLike, covariant=True) StateT_contra = TypeVar("StateT_contra", bound=StateLike, contravariant=True) ContextT = TypeVar("ContextT", bound=Union[StateLike, None], default=None) """Type variable used to represent graph run scoped context. Defaults to `None`. """ ContextT_contra = TypeVar( "ContextT_contra", bound=Union[StateLike, None], contravariant=True, default=None ) InputT = TypeVar("InputT", bound=StateLike, default=StateT) """Type variable used to represent the input to a state graph. Defaults to `StateT`. """ OutputT = TypeVar("OutputT", bound=StateLike, default=StateT) """Type variable used to represent the output of a state graph. Defaults to `StateT`. """ NodeInputT = TypeVar("NodeInputT", bound=StateLike) """Type variable used to represent the input to a node.""" NodeInputT_contra = TypeVar("NodeInputT_contra", bound=StateLike, contravariant=True)

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/kaman05010/MCPClientServer'

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