Skip to main content
Glama

mcp-google-sheets

index.ts1.5 kB
import { OAuth2PropertyValue, PieceAuth, createPiece, } from '@activepieces/pieces-framework'; import { PieceCategory } from '@activepieces/shared'; import { createCompanyUpdate } from './lib/actions/create-company-update'; import { createShareUpdate } from './lib/actions/create-share-update'; import { createCustomApiCallAction } from '@activepieces/pieces-common'; import { linkedinCommon } from './lib/common'; export const linkedinAuth = PieceAuth.OAuth2({ authUrl: 'https://www.linkedin.com/oauth/v2/authorization', tokenUrl: 'https://www.linkedin.com/oauth/v2/accessToken', required: true, scope: [ 'w_member_social', 'w_organization_social', 'rw_organization_admin', 'openid', 'email', 'profile', ], }); export const linkedin = createPiece({ displayName: 'LinkedIn', description: 'Connect and network with professionals', minimumSupportedRelease: '0.30.0', logoUrl: 'https://cdn.activepieces.com/pieces/linkedin.png', categories: [PieceCategory.MARKETING], authors: ["aasimsani","kishanprmr","MoShizzle","khaledmashaly","abuaboud"], auth: linkedinAuth, actions: [ createShareUpdate, createCompanyUpdate, createCustomApiCallAction({ auth: linkedinAuth, baseUrl: () => { return linkedinCommon.baseUrl; }, authMapping: async (auth) => { return { Authorization: `Bearer ${(auth as OAuth2PropertyValue).access_token}`, }; }, }), ], triggers: [], });

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