Skip to main content
Glama

mcp-google-sheets

create-issue-action.ts860 B
import { createAction, Property } from '@activepieces/pieces-framework'; import { gitlabAuth } from '../../'; import { gitlabCommon, makeClient } from '../common'; export const createIssueAction = createAction({ auth: gitlabAuth, name: 'create_issue', description: 'Create a project issue', displayName: 'Create Issue', props: { projectId: gitlabCommon.projectId(), title: Property.ShortText({ displayName: 'Issue Title', required: true, }), description: Property.LongText({ displayName: 'Issue Description', required: false, }), }, async run({ propsValue, auth }) { const { projectId, title, description } = propsValue; const client = makeClient({ auth }); return await client.createProjectIssue(projectId as string, { title: title, description: description, }); }, });

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