We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/devonmojito/ton-blockchain-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
util.py•284 B
"""
Used for locating a file in the data directory.
"""
from importlib.resources import files
def data_filename(filename):
"""
Given a relative filename, get the full path to that file in the data
directory.
"""
return files('language_data') / 'data' / filename