Skip to main content
Glama
buildwithgrove

Grove Public Endpoints MCP Server

Official

get_endpoint_docs

Retrieve detailed documentation for blockchain endpoints to understand how to interact with Ethereum, Solana, Cosmos, and Layer 2 networks through Grove's public API services.

Instructions

Get documentation for a specific endpoint

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endpointIdYesThe ID of the endpoint

Implementation Reference

  • Executes the get_endpoint_docs tool by calling docsManager.getEndpointDocs and returning the result as JSON or error message.
    case 'get_endpoint_docs': { const endpointId = args?.endpointId as string; const docPage = await docsManager.getEndpointDocs(endpointId); if (!docPage) { return { content: [ { type: 'text', text: `Documentation not found for endpoint: ${endpointId}`, }, ], isError: true, }; } return { content: [ { type: 'text', text: JSON.stringify(docPage, null, 2), }, ], }; }
  • Registers the get_endpoint_docs tool with name, description, and input schema requiring endpointId.
    { name: 'get_endpoint_docs', description: 'Get documentation for a specific endpoint', inputSchema: { type: 'object', properties: { endpointId: { type: 'string', description: 'The ID of the endpoint', }, }, required: ['endpointId'], }, },
  • Defines the input schema for get_endpoint_docs tool.
    { name: 'get_endpoint_docs', description: 'Get documentation for a specific endpoint', inputSchema: { type: 'object', properties: { endpointId: { type: 'string', description: 'The ID of the endpoint', }, }, required: ['endpointId'], }, },
  • Helper method in DocsManager that fetches endpoint docs by mapping endpointId to /endpoints/{endpointId} path.
    async getEndpointDocs(endpointId: string): Promise<DocPage | null> { // Convention: endpoint docs are at /endpoints/{endpointId} return this.getDocPage(`/endpoints/${endpointId}`); }

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/buildwithgrove/mcp'

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