We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Evan-Kim2028/spice-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import os
import pytest
from spice_mcp.adapters.dune import query as spice_query
pytestmark = pytest.mark.live
def _should_run_live():
return bool(os.getenv("SPICE_TEST_LIVE") == "1" and os.getenv("DUNE_API_KEY"))
@pytest.mark.skipif(not _should_run_live(), reason="live tests disabled by default")
def test_live_sui_probe_smoke():
df = spice_query("SELECT * FROM sui.events LIMIT 1", timeout_seconds=30, verbose=False)
assert df is not None
assert df.shape[1] > 0