Skip to main content
Glama
cfrs2005

GS Robot MCP Server

by cfrs2005

download_robot_map_v2

Download robot maps from the GS Robot MCP Server using the V2 API by specifying a map ID to retrieve navigation data for cleaning robots.

Instructions

Downloads a robot map using V2 API.

Args:
    map_id: The ID of the map to download.

Returns:
    A dictionary containing the map download information.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
map_idYes

Implementation Reference

  • Core handler implementation for the download_robot_map_v2 tool. Validates input and uses GausiumAPIClient to call the V2 map download API endpoint.
    async def download_robot_map_v2(self, map_id: str) -> Dict[str, Any]:
        """
        V2地图下载。
    
        Args:
            map_id: 地图ID
    
        Returns:
            地图下载信息
    
        Raises:
            ValueError: map_id为空
            httpx.HTTPStatusError: API调用错误
            httpx.RequestError: 网络问题
        """
        if not map_id:
            raise ValueError("Map ID cannot be empty")
    
        async with GausiumAPIClient() as client:
            return await client.call_endpoint(
                'download_map_v2',
                path_params={'map_id': map_id}
            )
  • MCP tool registration and thin wrapper handler that delegates to the GausiumMCP class method.
    @mcp.tool()
    async def download_robot_map_v2(map_id: str):
        """Downloads a robot map using V2 API.
    
        Args:
            map_id: The ID of the map to download.
    
        Returns:
            A dictionary containing the map download information.
        """
        return await mcp.download_robot_map_v2(map_id=map_id)
  • API endpoint configuration/schema used by the GausiumAPIClient for the download_map_v2 call.
    'download_map_v2': APIEndpoint(
        name="download_robot_map_v2",
        path="map/{map_id}/download",
        method=HTTPMethod.GET,
        version=APIVersion.OPENAPI_V2_ALPHA1,
        description="V2地图下载"
    )

Latest Blog Posts

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/cfrs2005/mcp-gs-robot'

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