Skip to main content
Glama

log_outreach

Track outreach activities to leads by recording communication channels, responses, and notes for revenue pipeline management.

Instructions

Log an outreach activity

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
channelYes
companyNameYes
leadIdNo
notesNo
responseReceivedNo
responseTypeNo
templateIdNo
templateUsedNo

Implementation Reference

  • Handler for the log_outreach tool. Proxies the tool call to the external Google Apps Script API using callAPI("logOutreach", args).
    case "log_outreach": result = await callAPI("logOutreach", args); break;
  • Input schema definition for the log_outreach tool, including parameters and validation rules.
    { name: "log_outreach", description: "Log an outreach activity", inputSchema: { type: "object", properties: { leadId: { type: "number" }, companyName: { type: "string" }, channel: { type: "string", enum: ["Cold Email", "LinkedIn", "Upwork", "Phone", "Gmail", "Other"] }, templateUsed: { type: "string" }, templateId: { type: "number" }, responseReceived: { type: "string", enum: ["Yes", "No"] }, responseType: { type: "string", enum: ["Interested", "Not Interested", "Question", "Meeting Booked", "No Response"] }, notes: { type: "string" }, }, required: ["companyName", "channel"], }, },
  • index.js:216-239 (registration)
    Registration of the log_outreach tool in the MCP server's tool list.
    { name: "log_outreach", description: "Log an outreach activity", inputSchema: { type: "object", properties: { leadId: { type: "number" }, companyName: { type: "string" }, channel: { type: "string", enum: ["Cold Email", "LinkedIn", "Upwork", "Phone", "Gmail", "Other"] }, templateUsed: { type: "string" }, templateId: { type: "number" }, responseReceived: { type: "string", enum: ["Yes", "No"] }, responseType: { type: "string", enum: ["Interested", "Not Interested", "Question", "Meeting Booked", "No Response"] }, notes: { type: "string" }, }, required: ["companyName", "channel"], }, },

Latest Blog Posts

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/PromptishOperations/mcpSpec'

If you have feedback or need assistance with the MCP directory API, please join our Discord server