llmconveyors-mcp

39 tools for the LLM Conveyors AI agent platform. Run Job Hunter, B2B Sales, ATS scoring, resume rendering, and more from any MCP client.

llmconveyors-mcp

npm version License: MIT Node.js

MCP server that connects AI agents to the LLM Conveyors platform — run Job Hunter, B2B Sales, and other AI agents directly from Claude, Cursor, or any MCP-compatible client.

LLM Conveyors

What is LLM Conveyors?

A community-driven AI agent platform with pay-per-action pricing ($1–5 per completed action). Instead of $100/mo SaaS subscriptions, you pay only for real outputs — a resume scored, a company researched, a cold email generated.

Live Agents:

  • Job Hunter — Tailored CVs, cover letters, and cold emails for job applications
  • B2B Sales — Deep company research and personalized sales outreach

Quick Start

1. Get an API key

Sign up at llmconveyors.com and create an API key from Settings → API Keys.

2. Add to your MCP client

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "llmconveyors": {
      "command": "npx",
      "args": ["-y", "llmconveyors-mcp"],
      "env": {
        "LLMC_API_KEY": "llmc_your_key_here"
      }
    }
  }
}
Claude Code
claude mcp add llmconveyors -- npx -y llmconveyors-mcp

Set the env var in your shell or .env:

export LLMC_API_KEY=llmc_your_key_here
Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "llmconveyors": {
      "command": "npx",
      "args": ["-y", "llmconveyors-mcp"],
      "env": {
        "LLMC_API_KEY": "llmc_your_key_here"
      }
    }
  }
}
Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "llmconveyors": {
      "command": "npx",
      "args": ["-y", "llmconveyors-mcp"],
      "env": {
        "LLMC_API_KEY": "llmc_your_key_here"
      }
    }
  }
}

3. Start using it

Ask your AI agent:

"Run the Job Hunter agent for the Senior Engineer role at Anthropic. Here's the job description: ..."

"Score my resume against this job posting for ATS compatibility."

"Research Stripe and draft a B2B cold email for our developer tools product."

Available Tools (66)

Agents

ToolDescription
job-hunter-runRun the Job Hunter agent — generates tailored CV, cover letter, and cold email
b2b-sales-runRun the B2B Sales agent — researches a company and generates sales outreach
agent-statusCheck the status of a running agent job
agent-interactSubmit a response to a phased agent workflow awaiting input
job-hunter-generate-cvGenerate a CV synchronously (faster, CV only)
agent-manifestGet input fields, capabilities, and billing info for an agent

Resume

ToolDescription
resume-parseParse a resume file into structured JSON Resume format
resume-validateValidate a resume in JSON Resume format
resume-renderRender a resume to PDF or HTML
resume-previewPreview a resume as HTML
resume-themesList available resume themes
resume-import-rxImport from Reactive Resume format
resume-export-rxExport to Reactive Resume format

Master Resumes

ToolDescription
master-resume-createCreate a new master resume
master-resume-listList all master resumes
master-resume-getGet a master resume by ID
master-resume-updateUpdate a master resume
master-resume-deleteDelete a master resume

Upload & Parse

ToolDescription
upload-resumeUpload and parse a resume file (base64)
upload-job-fileUpload and parse a job description file (base64)
upload-job-textParse a job description from text or URL

ATS Scoring

ToolDescription
ats-scoreScore a resume against a job description for ATS compatibility

Sessions

ToolDescription
session-createCreate a new session
session-listList sessions with optional filtering
session-getGet a session by ID
session-hydrateGet full session with artifacts and logs
session-downloadDownload an artifact from a session by storage key
session-deleteDelete a session
session-initInitialize a session with agent context and configuration
session-logAppend a log entry to a session

Settings & API Keys

ToolDescription
settings-profileGet user profile (credits, plan)
settings-preferences-getGet user preferences
settings-preferences-updateUpdate user preferences
settings-usage-summaryGet usage summary
settings-usage-logsGet paginated usage logs
api-key-createCreate a new API key
api-key-listList all API keys
api-key-revokeRevoke an API key
api-key-rotateRotate an API key
api-key-usageGet usage statistics for a specific API key
byo-key-getCheck if a Bring Your Own API key is configured
byo-key-setSet a BYO API key for a provider (e.g. Gemini)
byo-key-removeRemove the configured BYO API key
webhook-secret-getGet the current webhook secret
webhook-secret-rotateRotate the webhook secret

Content & Sharing

ToolDescription
content-saveSave a source document for AI generation context
content-delete-generationDelete a generation and its artifacts
content-research-senderResearch a sender's background for personalized content
content-list-sourcesList all saved source documents
content-get-sourceGet a specific source document by ID
content-delete-sourceDelete a saved source document
share-createCreate a public share link for generated content
share-statsGet share link statistics
share-get-publicGet a public share by slug
share-slug-statsGet visit statistics for a specific share link

Privacy

ToolDescription
privacy-list-consentsList all consent records for the current user
privacy-grant-consentGrant consent for a specific data processing purpose
privacy-revoke-consentRevoke a previously granted consent

Referral

ToolDescription
referral-statsGet referral program statistics
referral-codeGet your referral code
referral-vanity-codeSet a custom vanity referral code

Documents

ToolDescription
document-downloadDownload an artifact by storage path

Health

ToolDescription
health-rootGet server info and version
health-checkRun a full health check on all dependencies
health-readyCheck if the server is ready to accept requests
health-liveCheck if the server process is alive

API Key Scopes

Your API key needs the right scopes for the tools you want to use:

ScopeTools
jobs:readagent-status, agent-manifest
jobs:writejob-hunter-run, job-hunter-generate-cv
sales:writeb2b-sales-run
sessions:readsession-list, session-get, session-hydrate
sessions:writesession-create, session-delete, session-init, session-log
resume:readresume-themes, master-resume-list, master-resume-get
resume:writeresume-validate, resume-render, resume-preview, resume-import-rx, resume-export-rx, master-resume-create, master-resume-update, master-resume-delete
upload:writeupload-resume, upload-job-file, upload-job-text
ats:writeats-score
settings:readsettings-profile, settings-preferences-get, settings-usage-summary, settings-usage-logs, api-key-list
settings:writesettings-preferences-update, api-key-create, api-key-revoke, api-key-rotate
content:readcontent-list-sources, content-get-source
content:writecontent-save, content-delete-generation, content-research-sender, content-delete-source
privacy:readprivacy-list-consents
privacy:writeprivacy-grant-consent, privacy-revoke-consent

Environment Variables

VariableRequiredDescription
LLMC_API_KEYYesYour LLM Conveyors API key (prefix llmc_)
LLMC_BASE_URLNoCustom API endpoint (defaults to https://api.llmconveyors.com)

Development

git clone https://github.com/ebenezer-isaac/llmconveyors-mcp.git
cd llmconveyors-mcp
npm install
npm run build

# Test locally
LLMC_API_KEY=llmc_your_key node dist/index.js

Requirements

Links

License

MIT — see LICENSE for details.

Related Servers

NotebookLM Web Importer

Import web pages and YouTube videos to NotebookLM with one click. Trusted by 200,000+ users.

Install Chrome Extension