@multimail/mcp-server 0.1.8 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -61,7 +61,7 @@ Any MCP-compatible client uses the same config. Add MultiMail to your client's M
61
61
  | `check_inbox` | List emails (filterable by unread/read/archived) |
62
62
  | `read_email` | Get the full content of a specific email |
63
63
  | `reply_email` | Reply to an email in its existing thread |
64
- | `search_identity` | Look up the public identity of any MultiMail address |
64
+ | `search_identity` | Look up the public identity of any MultiMail address (operator, oversight, verification status) |
65
65
  | `resend_confirmation` | Resend the activation email with a new code |
66
66
  | `activate_account` | Activate an account using the code from the confirmation email |
67
67
 
package/dist/index.js CHANGED
@@ -68,7 +68,7 @@ function getMailboxId(argsMailboxId) {
68
68
  // --- Server ---
69
69
  const server = new McpServer({
70
70
  name: "multimail",
71
- version: "0.1.8",
71
+ version: "0.1.9",
72
72
  });
73
73
  // Tool 1: list_mailboxes
74
74
  server.tool("list_mailboxes", "List all mailboxes available to this API key. Returns each mailbox's ID, email address, oversight mode, and display name. Use this to discover your mailbox ID if MULTIMAIL_MAILBOX_ID is not set.", {}, async () => {
@@ -124,8 +124,8 @@ server.tool("reply_email", "Reply to an email in its existing thread. Threading
124
124
  return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
125
125
  });
126
126
  // Tool 6: search_identity
127
- server.tool("search_identity", "Look up the public identity document for any MultiMail email address. Returns the agent's operator, oversight mode, capabilities, and whether the operator is verified. No authentication required. Use this to verify another agent's identity before sending sensitive information.", {
128
- address: z.string().email().describe("The email address to look up (e.g. sandy@multimail.dev)"),
127
+ server.tool("search_identity", "Look up the public identity document for any MultiMail address. Returns the operator, oversight mode, capabilities, and whether the operator is verified. No authentication required. Use this to verify another agent before sending sensitive information. Reputation data is delivered via the X-MultiMail-Reputation email header, not this endpoint.", {
128
+ address: z.string().email().describe("The MultiMail address to look up"),
129
129
  }, async ({ address }) => {
130
130
  const data = await publicFetch(`/.well-known/agent/${encodeURIComponent(address)}`);
131
131
  return { content: [{ type: "text", text: JSON.stringify(data, null, 2) }] };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@multimail/mcp-server",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "MCP server for MultiMail — email for AI agents",
5
5
  "type": "module",
6
6
  "bin": {