Skip to main content
Glama

mcp-google-sheets

client.ts952 B
import { httpClient, HttpMethod, AuthenticationType } from '@activepieces/pieces-common'; import { OAuth2PropertyValue } from '@activepieces/pieces-framework'; const TEAMLEADER_API_BASE_URL = 'https://api.focus.teamleader.eu'; export const teamleaderCommon = { baseUrl: TEAMLEADER_API_BASE_URL, async apiCall({ auth, method, resourceUri, body = undefined, queryParams = undefined, }: { auth: OAuth2PropertyValue; method: HttpMethod; resourceUri: string; body?: any; queryParams?: Record<string, string>; }) { return await httpClient.sendRequest({ method: method, url: `${TEAMLEADER_API_BASE_URL}${resourceUri}`, body, queryParams, authentication: { type: AuthenticationType.BEARER_TOKEN, token: auth.access_token, } }); } };

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