kakiyoOfficial Kakiyo skill from Kakiyo.com for managing LinkedIn automation campaigns, prospects, and AI agents via Kakiyo MCP server. Use when users want to create outreach campaigns, add prospects, monitor performance, manage AI agents, or automate LinkedIn messaging. Includes 42 tools for campaigns, prospects, agents, analytics, workspaces, webhooks, and DNC management.
Install via ClawdBot CLI:
clawdbot install CyberBoyAyush/kakiyoOfficial skill from Kakiyo.com to control LinkedIn outreach campaigns and AI agents through the Kakiyo MCP server.
Check if configured:
mcporter config get kakiyo
If not configured, prompt user: "I need your Kakiyo API key to set this up. Get it from https://app.kakiyo.com β Settings β API Keys β Create API Key (40 characters)."
Once user provides their API key, run:
mcporter config add kakiyo https://api.kakiyo.com/mcp \
--header "Authorization:Bearer USER_API_KEY"
Replace USER_API_KEY with the key they provide.
Verify setup:
mcporter call kakiyo.verify_api_key --output json
Manage LinkedIn automation agents.
list_agents - List all agents with status and config
mcporter call kakiyo.list_agents --output json
get_agent - Get detailed agent info
mcporter call kakiyo.get_agent agentId:"agent_123" --output json
update_agent - Modify agent settings (working hours, limits)
mcporter call kakiyo.update_agent agentId:"agent_123" workingHours:'{"start":"09:00","end":"17:00"}' --output json
pause_agent - Stop an agent temporarily
mcporter call kakiyo.pause_agent agentId:"agent_123" --output json
resume_agent - Restart a paused agent
mcporter call kakiyo.resume_agent agentId:"agent_123" --output json
Create and manage outreach campaigns.
list_campaigns - List all campaigns with status
mcporter call kakiyo.list_campaigns --output json
get_campaign_stats - Get performance metrics
mcporter call kakiyo.get_campaign_stats campaignId:"camp_123" --output json
create_campaign - Create new campaign
mcporter call kakiyo.create_campaign \
name:"Tech Founders Outreach" \
productId:"prod_123" \
promptId:"prompt_456" \
agentId:"agent_789" \
--output json
update_campaign - Modify campaign settings
mcporter call kakiyo.update_campaign campaignId:"camp_123" name:"New Name" --output json
pause_campaign - Stop campaign
mcporter call kakiyo.pause_campaign campaignId:"camp_123" --output json
resume_campaign - Restart campaign
mcporter call kakiyo.resume_campaign campaignId:"camp_123" --output json
Manage leads and conversations.
list_prospects - List prospects with basic filtering
mcporter call kakiyo.list_prospects limit:50 --output json
get_prospect - Get full prospect details and conversation
mcporter call kakiyo.get_prospect prospectId:"pros_123" --output json
add_prospect - Add single LinkedIn profile to campaign
mcporter call kakiyo.add_prospect \
campaignId:"camp_123" \
name:"John Doe" \
url:"https://linkedin.com/in/johndoe" \
--output json
add_prospects_batch - Add multiple prospects at once
mcporter call kakiyo.add_prospects_batch \
campaignId:"camp_123" \
prospects:'[{"name":"Jane","url":"https://linkedin.com/in/jane"}]' \
--output json
search_prospects - Advanced search with filters
mcporter call kakiyo.search_prospects status:replied limit:20 --output json
list_campaign_prospects - Get all prospects in a campaign
mcporter call kakiyo.list_campaign_prospects campaignId:"camp_123" --output json
pause_prospect - Pause outreach to specific person
mcporter call kakiyo.pause_prospect prospectId:"pros_123" --output json
resume_prospect - Resume conversation
mcporter call kakiyo.resume_prospect prospectId:"pros_123" --output json
qualify_prospect - Mark prospect as qualified lead
mcporter call kakiyo.qualify_prospect prospectId:"pros_123" --output json
Monitor performance and metrics.
get_analytics_overview - Team-wide metrics across all campaigns
mcporter call kakiyo.get_analytics_overview --output json
get_campaign_analytics - Detailed metrics for specific campaign
mcporter call kakiyo.get_campaign_analytics campaignId:"camp_123" --output json
View products/services for campaigns.
list_products - List all products
mcporter call kakiyo.list_products --output json
View AI message templates.
list_prompts - List all prompt templates
mcporter call kakiyo.list_prompts --output json
View available AI models.
list_models - List AI models for message generation
mcporter call kakiyo.list_models --output json
Configure event notifications.
list_webhooks - List configured webhooks
mcporter call kakiyo.list_webhooks --output json
create_webhook - Set up new webhook
mcporter call kakiyo.create_webhook \
url:"https://example.com/webhook" \
events:'["prospect.replied","prospect.qualified"]' \
--output json
update_webhook - Modify webhook settings
mcporter call kakiyo.update_webhook webhookId:"wh_123" url:"https://new-url.com" --output json
delete_webhook - Remove webhook
mcporter call kakiyo.delete_webhook webhookId:"wh_123" --output json
list_webhook_events - List available event types
mcporter call kakiyo.list_webhook_events --output json
Manage blocklist.
list_dnc - List all blocked LinkedIn URLs
mcporter call kakiyo.list_dnc --output json
add_dnc - Block a profile from all campaigns
mcporter call kakiyo.add_dnc url:"https://linkedin.com/in/blocked" --output json
remove_dnc - Unblock a profile
mcporter call kakiyo.remove_dnc url:"https://linkedin.com/in/unblock" --output json
check_dnc - Check if URL is blocked
mcporter call kakiyo.check_dnc url:"https://linkedin.com/in/check" --output json
Manage client workspaces (for agencies).
list_workspaces - List all client workspaces
mcporter call kakiyo.list_workspaces --output json
create_workspace - Create new client workspace
mcporter call kakiyo.create_workspace name:"Acme Corp" --output json
delete_workspace - Delete workspace
mcporter call kakiyo.delete_workspace workspaceId:"ws_123" --output json
invite_client - Invite client user via email
mcporter call kakiyo.invite_client workspaceId:"ws_123" email:"client@example.com" --output json
remove_client - Remove client from workspace
mcporter call kakiyo.remove_client workspaceId:"ws_123" userId:"user_123" --output json
assign_agent_to_workspace - Assign agent to client
mcporter call kakiyo.assign_agent_to_workspace workspaceId:"ws_123" agentId:"agent_123" --output json
unassign_agent_from_workspace - Remove agent from workspace
mcporter call kakiyo.unassign_agent_from_workspace workspaceId:"ws_123" agentId:"agent_123" --output json
Verify connection.
verify_api_key - Check if API key is valid
mcporter call kakiyo.verify_api_key --output json
"How are my LinkedIn campaigns doing?"
mcporter call kakiyo.get_analytics_overview --output json
"Show me everyone who replied this week"
mcporter call kakiyo.search_prospects status:replied --output json
"Add these LinkedIn profiles to my Tech Founders campaign"
mcporter call kakiyo.list_campaignsmcporter call kakiyo.add_prospects_batch campaignId:"..." prospects:'[...]'"Stop my agent for the weekend"
mcporter call kakiyo.pause_agent agentId:"agent_123" --output json
"Create workspace for new client Acme Corp and assign Agent-1"
mcporter call kakiyo.create_workspace name:"Acme Corp" --output json
mcporter call kakiyo.assign_agent_to_workspace workspaceId:"ws_xxx" agentId:"agent_123" --output json
"Server not found" error:
Run setup again with correct API key from https://app.kakiyo.com
Check configuration:
mcporter config get kakiyo
Test connection:
mcporter call kakiyo.verify_api_key --output json
Re-configure:
mcporter config remove kakiyo
mcporter config add kakiyo https://api.kakiyo.com/mcp \
--header "Authorization:Bearer YOUR_API_KEY"
AI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
Captures learnings, errors, and corrections to enable continuous improvement. Use when: (1) A command or operation fails unexpectedly, (2) User corrects Clau...
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
Search and analyze your own session logs (older/parent conversations) using jq.
Typed knowledge graph for structured agent memory and composable skills. Use when creating/querying entities (Person, Project, Task, Event, Document), linking related objects, enforcing constraints, planning multi-step actions as graph transformations, or when skills need to share state. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", entity CRUD, or cross-skill data access.
Ultimate AI agent memory system for Cursor, Claude, ChatGPT & Copilot. WAL protocol + vector search + git-notes + cloud backup. Never lose context again. Vibe-coding ready.
Headless browser automation CLI optimized for AI agents with accessibility tree snapshots and ref-based element selection