LinktLinkt

Overview

AI-powered GTM workflows using Claude Code with pre-built skills

Agent Automations bring AI-powered go-to-market workflows directly into your development environment. Using Claude Code with pre-built skills, you can monitor signals, research prospects, and draft personalized outreach—all through natural language.

Overview

The Linkt Cookbook is your recommended workspace for agent-based workflows. It contains:

  • Pre-built skills for common GTM patterns (signals, outreach)
  • MCP configuration for seamless Linkt API access
  • User context for personalized messaging
  • Example workflows to get started quickly

Instead of writing code, you simply describe what you want in plain English and let Claude handle the execution.

Getting Started

1. Clone the cookbook

git clone https://github.com/linkt-ai/linkt-cookbook.git
cd linkt-cookbook

2. Configure your environment

Create a .env file with your API key:

LINKT_API_KEY=your_api_key_here

The cookbook includes a .envrc file for direnv, which automatically loads your environment when entering the directory.

3. Start Claude Code

claude

Claude will automatically connect to the Linkt MCP server and load the available skills.

4. Initialize your profile

Run the init skill to set up your user context:

/linkt-init

This creates a personalized profile used by other skills for contextual outreach.

Available Skills

SkillCommandDescription
Init/linkt-initSet up your user profile for personalized outreach
Signals/linkt-signalsPull recent business signals with associated contacts
Outreach/linkt-outreachDraft personalized LinkedIn connection messages

Each skill guides you through an interactive workflow—no API knowledge required.

Environment Configuration

The cookbook uses a project-level .mcp.json for MCP configuration:

{
  "mcpServers": {
    "linkt": {
      "type": "http",
      "url": "https://api.linkt.ai/mcp",
      "headers": {
        "x-api-key": "${LINKT_API_KEY}"
      }
    }
  }
}

Your API key is loaded from the environment variable, keeping credentials out of version control.

Using direnv

The cookbook includes a .envrc file with dotenv that automatically loads your .env file:

# .envrc
dotenv

After installing direnv, run direnv allow in the cookbook directory. Your environment will be configured automatically whenever you enter the project.

Resources

Next Steps

On this page