We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/iamsamuelfraga/mcp-pipedrive'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•851 B
import type { PipedriveClient } from '../../pipedrive-client.js';
import { getListPermissionSetsTool } from './list.js';
import { getGetPermissionSetTool } from './get.js';
import { getPermissionSetAssignmentsTool } from './assignments.js';
/**
* Get all permission set-related tools for the MCP server
*
* This function aggregates all 3 permission set tools into a single object:
* - List operations: list
* - Get operations: get
* - Assignment operations: get_assignments
*
* @param client - The PipedriveClient instance to use for API calls
* @returns Object containing all permission set tools with their configurations
*/
export function getPermissionSetTools(client: PipedriveClient) {
return {
...getListPermissionSetsTool(client),
...getGetPermissionSetTool(client),
...getPermissionSetAssignmentsTool(client),
};
}