New Pre-built Claude skills are here. Set up Claude and Kolvera end to end — then run your whole workflow just by chatting. Get the skills →

Add Kolvera as a connector

claude.ai & Desktop

No API token, no config file. Claude registers itself — you just sign in to Kolvera once to authorise. Paste this connector URL:

https://mcp.kolvera.io/mcp
1

In Claude, click your name (bottom-left) → Customize → Connectors, then click Add custom connector.

claude.ai Connectors settings — Add custom connector
2

Name it Kolvera, paste the URL above, and click Add.

Add custom connector dialog with Kolvera and the MCP URL
3

Sign in to Kolvera and click Authorise — that's it. Kolvera's tools are now in Claude.

Kolvera consent screen — Authorise Claude

Last step: in any chat, open the + menu → Connectors and switch Kolvera on — its tools are now live in that conversation.

Using Claude Code, Cursor or Windsurf? They connect with an API token — see Advanced setup below.

Give Claude the playbook

Add this PDF to your Claude Project to give Claude instructions on best practices — every tool, every workflow, and the T.I.P.S. email framework. Claude then follows it automatically across the whole project.

Download PDF

Pre-built skills

Free & open-source

A skill is a packaged workflow Claude runs on a trigger phrase — the right Kolvera tools, in the right order, with approval gates. Say “map the market for AU fintech” and Claude builds the whole pipeline. No prompt engineering, no clicking around the app. They're free and open-source at github.com/kolverahq/kolvera-skills.

Before you start

Skills run in Claude's code sandbox, so turn it on first: Settings → Capabilities → “Code execution and file creation”. Skills are available on Claude's paid plans (Pro, Max, Team, Enterprise) — on Team or Enterprise an admin enables Skills + Code execution for the workspace.

1

Pick a skill from the list below and download its zip from the skills repo (each has a one-click download).

2

In Claude, open Customize → Skills → +, choose Upload a skill, upload the .zip, and toggle it on.

3

Say the trigger phrase — e.g. “Map the market for commercial cleaning in Melbourne.” Claude runs the whole workflow, checking in with you at each gate.

New here? Start with map-the-market, icp-review, and campaign-build — they cover most of the work. The skills group into the same three jobs as working a market in Kolvera:

Find — build your market & surface targets

map-the-market · “Map the market for [niche]”
The full pipeline end-to-end: ICP → Deep Research → job scraping → contacts → hot lists.
icp-review · “Review my ICP”
Audits your targeting — tightens industries, sharpens exclusions, fills gaps.
deep-research · “Run deep research on my ICP”
Discovers companies you didn't know existed, with smart stop rules so you don't waste credits.
job-scrape · “Scrape job boards for my ICP”
Runs SEEK / LinkedIn / Indeed scrapes, filters results, finds who's actively hiring.
company-research · “Research [company name]”
Single-company deep dive: AI research, decision-makers, hiring signals, recommended approach.

Organize — enrich, sort, segment, keep records clean

contact-enrichment · “Enrich contacts for my ICP”
Finds decision-makers at your targets, with verified emails and phone numbers.
prospect-sort · “Sort my new contacts”
Classifies contacts into prospects, candidates, and junk; links them to the right profiles.
process-scrape · “I just scraped 50 contacts from LinkedIn”
Dedupes, classifies by title, finds emails, builds hot lists.
hot-list-build · “Build hot lists for my ICP”
Segments people into S/A/B tiers, ready for outreach.
candidate-pipeline · “Move [name] to [stage]”
Manage stages, grades, notes, and next actions across your candidate pipeline.
deal-pipeline · “Review my pipeline”
Flags stale records, surfaces next actions, recommends adjustments.

Engage — run outreach & keep momentum

campaign-build · “Build a campaign for [hot list]”
Multi-step email campaigns with the T.I.P.S. framework — copy, inboxes, enrolment, activation.
rmp-campaign · “Take [name] to market”
Take one person to market end-to-end: build their profile → match companies → find buyers → launch.
campaign-health · “Check my campaigns”
Fast health check — flags bounces, low opens, inbox problems, dead campaigns.
morning-briefing · “Morning briefing”
Daily digest: meetings, replies, follow-ups, pipeline alerts, top 3 priorities.
weekly-review · “Weekly review”
End-of-week synthesis: what moved, what's hot, where to focus next week.

Add the behaviour layer: the guidelines skill makes every other skill consultative — it reviews your setup, flags what's weak, and confirms before spending credits. Upload it once. Don't want to pick? Grab the download-everything bundle and add the ones you want.

Browse & download the skills →

What you can do

Once connected, just describe what you need — no forms, no clicks.

Company Search "Find AU tech companies with 20-100 employees hiring in Melbourne"
Contact Enrichment "Find the email and phone for Sarah Chen at Canva"
Deep Research "Research the fintech sector in Sydney and find companies that match my ICP"
Campaign Management "Create a 3-step outreach campaign for my top 20 prospects"
ASIC Lookups "Look up the directors of ABN 12345678901"
Pipeline & CRM "Show my pipeline summary and any prospects that replied today"

Try this first: map a market and fill your pipeline

Describe your target market in one line, set a credit budget, and Kolvera builds the whole pipeline — segments, companies, live hiring signals, decision-makers — while you watch. Copy this, fill the blanks, paste into Claude.

Map my market and fill my pipeline.

First, create a business context from my website: [your-website-url]

Then map a new target market: [describe your target market in one line, e.g. "AU accounting firms 10-50 employees that do advisory work"]

Set a budget of [X] credits and [Y] scrapes.

Once the segments are generated, show them to me for confirmation. After I confirm:

1. Run Deep Research to find companies, then keep expanding until diminishing returns
2. Sort the companies into their segments
3. Scrape SEEK, Indeed, and LinkedIn for live roles — run all three at the same time
4. Generate a Market Intelligence report once the roles are in
5. Find the decision-makers at the top-tier companies
6. Pull the BD Brief so I can review everything in one place

Check in with me at each gate but keep moving between gates without waiting.

Claude already has the full workflow guide and tool reference built in — just ask “show me the workflow guide”.

Advanced setup — Claude Code, Cursor & Windsurf (API token)

Clients that don't support one-click connectors authenticate with an API token. Your token uses the same credits as the dashboard.

Step 1 — Create an API token

  1. Go to Settings → API Tokens in Kolvera
  2. Click Create Token and name it (e.g. "Claude")
  3. Copy the kv_... token — you only see it once

Claude Desktop (Mac & Windows)

Settings → Developer → Edit Config, then add Kolvera to claude_desktop_config.json:

{
  "mcpServers": {
    "kolvera": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.kolvera.io/mcp?token=YOUR_KV_TOKEN"
      ]
    }
  }
}

Replace YOUR_KV_TOKEN with your kv_... token and restart Claude Desktop. Requires Node.js (the npx mcp-remote bridge handles the rest). Note: Desktop also supports the one-click connector above — the token route is only needed for older versions.

Claude Code / Cursor / Windsurf

Add a .mcp.json in your project root (or home directory):

{
  "mcpServers": {
    "kolvera": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.kolvera.io/mcp?token=YOUR_KV_TOKEN"
      ]
    }
  }
}

In Claude Code, run /mcp to connect. Kolvera's tools appear in your tool list.

192 tools available

Every feature in the Kolvera dashboard is accessible through MCP. Key categories:

Pipeline Orchestration — map a market with a budget cap, walk it stage by stage, pull the Living BD Brief
Company Search — ASIC lookup, ABR verify, search the company database, find contacts
Contact Enrichment — find email, find phone, verify, bulk enrich
Deep Research — AI company discovery, market mapping, expand to diminishing returns
Campaigns — create, launch, pause, inbox health, stats, enrolments
People & Pipeline — prospects, candidates, stages, grades, notes, hot lists
Clients & Placements — client jobs, fee terms, shortlist, placement revenue
Job Board Scraping — SEEK / Indeed / LinkedIn scrapes, status, follow-ups
Intelligence Reports — branded Market and Role intelligence PDFs
CRM Sync — push contacts to Atlas, HubSpot, Pipedrive, and more
Meetings — book, reschedule, mark attended or no-show
Account — credit balance, usage stats, campaign analytics

Full reference: API & Integrations Guide

FAQ

Does MCP access cost extra?

No. MCP access is included on all plans, including the free trial. You use your existing Kolvera credits — enrichment, research, and campaigns are charged at standard rates (2cr email, 2cr phone, 1cr research).

Which Claude plans support MCP?

Claude Pro, Team, and Enterprise plans support MCP connectors. claude.ai and Claude Desktop use the one-click connector; Claude Code, Cursor and Windsurf use an API token.

Is my data secure?

Yes. The connector uses OAuth (or token) authentication. Each request is authenticated and isolated to your tenant — no data is shared between accounts. The server runs in Sydney (ap-southeast-2) alongside your Kolvera data.

What if the connection drops?

Re-authorise the connector in Settings, or in Claude Code run /mcp to reconnect. Connections can briefly drop during server updates (usually <30 seconds).

Can I use Kolvera with other AI tools?

Yes. The server uses the open Model Context Protocol — it works with any MCP-compatible client, including Cursor, Windsurf, Cline, and custom apps.

Don't have a Kolvera account yet?

Free trial · 50 credits included · no credit card required.

Start Free Trial