Skip to main content
Glama
bitgeese

Sequential Questioning MCP Server

by bitgeese
env.py646 B
"""Utilities for getting information about the runtime environment.""" import platform from functools import lru_cache @lru_cache(maxsize=1) def get_runtime_environment() -> dict: """Get information about the LangChain runtime environment. Returns: A dictionary with information about the runtime environment. """ # Lazy import to avoid circular imports from langchain_core import __version__ return { "library_version": __version__, "library": "langchain-core", "platform": platform.platform(), "runtime": "python", "runtime_version": platform.python_version(), }

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/bitgeese/sequential-questioning'

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