Skip to main content
Glama

BigGo MCP Server

by Funmula-Corp
import pytest from biggo_mcp_server.services.spec_search import SpecMappingRet, SpecSearchService from biggo_mcp_server.types.setting import BigGoMCPSetting from .helper import * # noqa: F403 @pytest.mark.asyncio async def test_spec_search_service_indexes(setting: BigGoMCPSetting): service = SpecSearchService(setting) async with service.session(): indexes = await service.spec_indexes() assert isinstance(indexes, list) @pytest.mark.asyncio async def test_spec_search_service_mapping(setting: BigGoMCPSetting): service = SpecSearchService(setting) async with service.session(): indexes = await service.spec_indexes() mapping = await service.spec_mapping(indexes[0]) assert isinstance(mapping, SpecMappingRet) @pytest.mark.asyncio async def test_spec_search_service_search(setting: BigGoMCPSetting): service = SpecSearchService(setting) async with service.session(): indexes = await service.spec_indexes() hits = await service.search(indexes[0], {"query": {"match_all": {}}}) assert isinstance(hits, list) with pytest.raises(ValueError): await service.search(indexes[0], {"query": {"match_all": {}}, "size": 11})

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/Funmula-Corp/BigGo-MCP-Server'

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