Skip to main content
Glama

get-server-version

Check the Strava MCP server version and metadata to verify compatibility and access fitness data integration features.

Instructions

Returns the Strava MCP server version and related metadata.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The handler implementation of the 'get-server-version' tool.
    export const getServerVersionTool = {
      name: "get-server-version",
      description: "Returns the Strava MCP server version and related metadata.",
      inputSchema: undefined,
      execute: async () => {
        const info = getServerInfo();
        return {
          content: [
            {
              type: "text" as const,
              text: JSON.stringify(info, null, 2),
            },
          ],
        };
      },
    };
  • src/server.ts:198-203 (registration)
    The registration of the 'get-server-version' tool in the server instance.
    server.tool(
        getServerVersionTool.name,
        getServerVersionTool.description,
        {},
        getServerVersionTool.execute
    );

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/LimeON-source/Strava-MCP'

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