Skip to main content
Glama

MCP Sheet Parser

by yuqie6
MIT License
3
  • Apple
lru_cache.py387 B
""" 用于行块缓存的 LRU 缓存。 """ from cachetools import LRUCache class LRURowBlockCache: def __init__(self, max_entries=100): self.cache = LRUCache(maxsize=max_entries) def get(self, key): return self.cache.get(key) def set(self, key, value): self.cache[key] = value def clear(self): self.cache.clear()

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/yuqie6/MCP-Sheet-Parser-cot'

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