We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nice-bills/dune-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
inspect_client.py•232 B
from dune_client.client import DuneClient
import inspect
print("Methods on DuneClient:")
for name, method in inspect.getmembers(DuneClient, predicate=inspect.isfunction):
if not name.startswith("_"):
print(f"- {name}")