get_activity
Retrieve a specific Pipedrive CRM activity by its unique ID to access detailed information about tasks, meetings, or other logged interactions.
Instructions
Get a specific activity by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Activity ID |
Implementation Reference
- src/pipedrive-client.ts:387-391 (handler)The implementation of the get_activity tool, which performs an HTTP GET request to the /activities/{id} endpoint of the Pipedrive API.
async getActivity(id: number): Promise<PipedriveResponse<Activity>> { return this.handleRequest<Activity>( this.client.get(`/activities/${id}`) ); } - src/tools/activities.ts:38-51 (schema)The MCP tool registration and schema definition for 'get_activity'.
{ name: 'get_activity', description: 'Get a specific activity by ID', inputSchema: { type: 'object', properties: { id: { type: 'number', description: 'Activity ID', }, }, required: ['id'], }, },