Skip to main content
Glama

mcp-google-sheets

client.ts659 B
import { HttpMethod, httpClient } from "@activepieces/pieces-common"; export const BASE_URL = `https://api.agentx.so/api/v1/access`; export async function makeRequest( apiKey: string, method: HttpMethod, path: string, body?: unknown ) { try { const response = await httpClient.sendRequest({ method, url: `${BASE_URL}${path}`, headers: { "x-api-key": apiKey, "Content-Type": "application/json", Accept: "application/json", }, body, }); return response.body; } catch (error: any) { throw new Error(`AgentX API error: ${error.message || String(error)}`); } }

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/activepieces/activepieces'

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