🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@keyid/agent-kit

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@keyid/agent-kit

KeyID.ai MCP server — agent email tools for AI frameworks

Source
npmnpm
Version
0.2.6
Version published
Weekly downloads
51
Maintainers
1
Weekly downloads
 
Created
Source

@keyid/agent-kit

Give Claude, Cursor, or any MCP client a real email address — and optionally a phone number. Free. No signup.

27 email + SMS tools via Model Context Protocol (MCP): send, receive, reply, search inbox, manage contacts, set auto-reply, schedule delivery — everything an AI agent needs to handle email autonomously.

Powered by KeyID.ai — free email infrastructure and SMS infrastructure for AI agents. No human registration, no API keys to manage, no cost.

Install

npm install @keyid/agent-kit
# or
yarn add @keyid/agent-kit

Usage

With Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "keyid": {
      "command": "npx",
      "args": ["@keyid/agent-kit"],
      "env": {
        "KEYID_PUBLIC_KEY": "...hex...",
        "KEYID_PRIVATE_KEY": "...hex..."
      }
    }
  }
}

With any MCP client

# Run directly
npx @keyid/agent-kit

# Or with existing keypair
KEYID_PUBLIC_KEY=abc123 KEYID_PRIVATE_KEY=def456 npx @keyid/agent-kit

Environment Variables

VariableDescriptionDefault
KEYID_BASE_URLAPI base URLhttps://keyid.ai
KEYID_PUBLIC_KEYEd25519 public key (hex)Auto-generated
KEYID_PRIVATE_KEYEd25519 private key (hex)Auto-generated

Tools (27)

Identity & Auth

ToolDescription
keyid_provisionRegister agent, get email
keyid_request_phoneRequest a phone number (opt-in)
keyid_get_emailGet current active email
keyid_get_phoneGet assigned phone number

Messages

ToolDescription
keyid_get_inboxFetch inbox (with search, filtering, channel filter)
keyid_sendSend email (scheduled, display name, HTML)
keyid_replyReply to a message
keyid_forwardForward a message
keyid_update_messageUpdate read/starred status
keyid_get_unread_countCount unread messages

Threads & Drafts

ToolDescription
keyid_list_threadsList conversation threads
keyid_get_threadGet thread with messages
keyid_create_draftCreate a draft
keyid_send_draftSend a draft

Settings

ToolDescription
keyid_get_auto_replyGet auto-reply settings
keyid_set_auto_replyConfigure vacation responder
keyid_get_signatureGet email signature
keyid_set_signatureSet email signature
keyid_get_forwardingGet forwarding settings
keyid_set_forwardingConfigure forwarding

Contacts

ToolDescription
keyid_list_contactsList saved contacts
keyid_create_contactCreate a contact
keyid_delete_contactDelete a contact

Webhooks

ToolDescription
keyid_list_webhooksList webhooks
keyid_create_webhookCreate webhook
keyid_get_webhook_deliveriesDelivery history

Lists & Metrics

ToolDescription
keyid_manage_listAdd/remove from allow/blocklist
keyid_get_metricsQuery usage metrics

Example Conversation

User: Check my email

Agent: [calls keyid_get_inbox]
You have 3 new messages:
1. alice@company.com — "Q1 Report" (2 hours ago)
2. bob@partner.org — "Meeting tomorrow" (5 hours ago)
3. noreply@service.com — "Password reset" (1 day ago)

User: Reply to Alice saying I'll review it today

Agent: [calls keyid_reply with message_id and body]
Reply sent to alice@company.com.

User: Any text messages?

Agent: [calls keyid_get_inbox with channel="sms"]
You have 1 SMS:
1. +16692620196 — "Your verification code is 482901" (3 minutes ago)

Protocol

Uses MCP JSON-RPC over stdio (protocol version 2024-11-05). Compatible with Claude Desktop, Cursor, and any MCP client.

License

MIT

Keywords

keyid

FAQs

Package last updated on 13 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts