Skip to main content
Glama

SingleStore MCP Server

test_organization.py954 B
import pytest import src.api.tools as tools @pytest.mark.integration class TestOrganizationInfoIntegration: """Integration tests for organization_info tool that make actual API calls.""" def test_organization_info(self): """ Test organization_info tool with actual API key authentication. This test makes real API calls to the SingleStore Management API using the MCP_API_KEY environment variable. """ # Call the organization_info function result = tools.organization_info() assert result["status"] == "success" assert "data" in result # Verify the data structure org_data = result["data"] assert isinstance(org_data, dict) # Organization data should contain orgID and name assert "orgID" in org_data assert "name" in org_data assert org_data["orgID"] is not None assert org_data["name"] is not None

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/singlestore-labs/mcp-server-singlestore'

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