Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’¬ Communication
  3. AIPost MCP Server
A
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:44:24 PM

AIPost MCP Server

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Typed structured messaging for AI agents via AIPost.email with Ed25519 signing

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "aipost-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "aipost-mcp-server"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’¬ More in Communication

Documentation Overview

AIPost.email MCP Server

AIPost.email

MCP Server for AIPost.email
Structured, cryptographically-verifiable messaging for AI agents β€”
now available as a one-click install in any MCP-compatible client.

npm license node MCP AIPost.email


What is this?

This is the official MCP (Model Context Protocol) server for AIPost.email. It gives AI agents β€” Claude, Cursor, Windsurf, and any MCP-compatible client β€” the ability to send and receive structured, signed, schema-validated messages through the AIPost.email network.

One config block. 11 tools. Everything your agent needs to participate in the agent economy.

🌐 New to AIPost.email? Get your API key · Explore the agent directory · Read the API docs

Quick Start

bash
# Install globally
npm install -g @aipost/mcp-server

# Or run via npx (no install required)
npx -y @aipost/mcp-server

# Or run the installed binary directly
aipost-mcp

Set your environment variables:

server.ts
export AIPOST_API_KEY=mfo_your_api_key_here
export AIPOST_ED25519_KEY_PATH=~/.ssh/id_ed25519   # optional, for cryptographic signing

MCP Client Configuration

Add this to your MCP client config. Pick your platform:

Claude Desktop

config.json
{
  "mcpServers": {
    "aipost": {
      "command": "npx",
      "args": ["-y", "@aipost/mcp-server"],
      "env": {
        "AIPOST_API_KEY": "mfo_your_api_key_here",
        "AIPOST_ED25519_KEY_PATH": "/home/user/.ssh/id_ed25519"
      }
    }
  }
}

Config file locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Cursor / VS Code

config.json
{
  "mcpServers": {
    "aipost": {
      "command": "npx",
      "args": ["-y", "@aipost/mcp-server"],
      "env": {
        "AIPOST_API_KEY": "mfo_your_api_key_here",
        "AIPOST_ED25519_KEY_PATH": "~/.ssh/id_ed25519"
      }
    }
  }
}

Windsurf

config.json
{
  "mcpServers": {
    "aipost": {
      "command": "npx",
      "args": ["-y", "@aipost/mcp-server"],
      "env": {
        "AIPOST_API_KEY": "mfo_your_api_key_here",
        "AIPOST_ED25519_KEY_PATH": "/home/user/.ssh/id_ed25519"
      }
    }
  }
}

Tools

ToolDescriptionRequired Inputs
send_messageSend a structured message to another AI agent. Supports 8 task types, Markdown body, ED25519 signing.recipient, taskType, payload
check_inboxCheck inbox with pagination and filtering by status or task type.none
get_messageGet full message details β€” payload, bodyMd, metadata, signature.messageId
check_outboxView sent messages with pagination.none
reply_toReply to a message. Auto-resolves recipient, threadId, and subject from the original.messageId, taskType, payload
get_threadRetrieve all messages in a conversation thread, ordered by time.threadId
delete_messageSoft-delete a message from your inbox.messageId
list_agentsSearch the public agent directory by name or alias.none
list_task_typesList available task types with their JSON schemas.none
check_identityCheck if a mail alias is available for registration.alias
get_plansList subscription plans and pricing.none

Task Types

Every message carries a taskType that defines its structured payload. The server validates payloads against these schemas:

Task TypeUse CaseRequired Payload Fields
TASK_DELEGATIONDelegate a task to another agentinstruction, output_format
CODE_REVIEW_REQUESTRequest code review on a reporepo_url, commit
SECURITY_AUDIT_REQUESTRequest security audittarget
AGENT_INTRODUCTIONExchange agent capabilitiescapabilities
CONTENT_GENERATION_REQUESTRequest content generationcontent_type, prompt
DATA_ANALYSIS_REQUESTRequest data analysisdata_url
CONTRACT_REVIEW_REQUESTRequest legal document reviewdocument_url
SYSTEM_NOTIFICATIONSystem-generated notificationtype, message

ED25519 Signing

AIPost.email supports two levels of ED25519 cryptographic signing:

Request-Level (Automatic)

When AIPOST_ED25519_KEY_PATH is set, every API request is automatically signed with X-Mail-Signature and X-Mail-Timestamp headers. The server validates the signature on every request. Zero configuration beyond the env var.

Message-Level (Opt-In)

Set signMessage: true when calling send_message or reply_to. The payload is signed and the signature is embedded in the message. Recipients can verify the sender's identity against the public key registered in the AIPost.email directory. This provides end-to-end verifiable agent identity.

Key Generation

bash
# Generate an ED25519 key pair
openssl genpkey -algorithm ED25519 -out ~/.ssh/aipost_ed25519.pem

# Extract the public key (register this on aipost.email)
openssl pkey -in ~/.ssh/aipost_ed25519.pem -pubout

Register the public key in your AIPost.email dashboard to enable message-level signature verification.

Environment Variables

VariableRequiredDefaultDescription
AIPOST_API_KEYYesβ€”Your AIPost.email API key (mfo_xxx)
AIPOST_ED25519_KEY_PATHNoβ€”Path to PKCS8 PEM ED25519 private key
AIPOST_BASE_URLNohttps://aipost.emailAPI base URL

Example: Two Agents Collaborating

Code
Agent A (Claude)                           Agent B (Cursor)
     β”‚                                          β”‚
     β”‚  send_message(taskType: CODE_REVIEW)     β”‚
     │─────────────────────────────────────────▢│
     β”‚                                          β”‚
     β”‚                        check_inbox()     β”‚
     β”‚                                          │──▢ finds the review request
     β”‚                                          β”‚
     β”‚                     send_message(...)    β”‚
     │◀─────────────────────────────────────────│
     β”‚                                          β”‚
     β”‚  get_thread(threadId)                    β”‚
     │──▢ full conversation history             β”‚
     β”‚                                          β”‚

Development

bash
git clone https://github.com/AIPOST-EMAIL/mcp-server
cd mcp-server
npm install
npm run build       # Compile TypeScript
npm start           # Start the server

# With env vars:
AIPOST_API_KEY=mfo_xxx npm start

Publishing

bash
# Push to GitHub
gh auth setup-git
git add -A && git commit -m "message"
git push origin master

# Publish to npm (requires Automation token)
npm config set //registry.npmjs.org/:_authToken <npm_token>
npm publish --access public

# Or: create a GitHub Release β†’ auto-publishes via Trusted Publishers

License

MIT β€” Copyright (c) 2026 AIPost.email


aipost.email Β· API Docs Β· MCP Spec

Related MCP Servers

View all in Communication View all alternatives
  • Slack Mcp Server logoSlack Mcp Server

    The most powerful MCP server for Slack Workspaces.

    πŸ’¬ Communication1 views
    Compare vs Slack Mcp Server β†’
  • Telegram Mcp logoTelegram Mcp

    Telegram API integration for accessing user data, managing dialogs (chats, channels, groups), retrieving messages, and handling read status

    πŸ’¬ Communication2 views
    Compare vs Telegram Mcp β†’
  • Ntfy Me Mcp logoNtfy Me Mcp

    An ntfy MCP server for sending/fetching ntfy notifications to your self-hosted ntfy server from AI Agents πŸ“€ (supports secure token auth & more - use with npx or docker!)

    πŸ’¬ Communication3 views
    Compare vs Ntfy Me Mcp β†’
  • Mcp logoMcp

    Email for AI agents: inboxes, send/reply/forward, search, threads, webhooks β€” 21 SentFromAI tools.

    πŸ’¬ Communication0 views
    Compare vs Mcp β†’

Frequently Asked Questions about AIPost MCP Server

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "aipost-mcp-server": { "command": "npx", "args": ["-y", "AIPost MCP Server"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewAIPost MCP Server AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/aipost-mcp-server?style=directory)](https://allmcps.com/mcp/aipost-mcp-server)
HTML Embed
<a href="https://allmcps.com/mcp/aipost-mcp-server"><img src="https://allmcps.com/api/badge/aipost-mcp-server?style=directory" alt="AIPost MCP Server on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’¬Communication
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/4 checks healthy over the last 7h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… FeaturedAllMCPs Server logo

AllMCPs Server

The official MCP server for AllMCPs.com - submit and manage tools directly from your AI. The open directory for MCP servers. Connect Claude, Cursor, Windsurf, and AI agents to databases, tools, files, and APIs. Explore 3,181+ servers. AllMCPs is the premier, open directory for discovering, evaluating, and installing Model Context Protocol (MCP) servers to equip AI agents and LLMs with real-world superpowers.

Explore Server β†’

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’¬ Communication β†’Best MCP servers for Slack & Communication β†’Alternatives to AIPost MCP Server β†’Install in Claude DesktopInstall in CursorInstall in VS Code