radmail-mcp 0.3.1 → 0.3.2
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 +1 -1
- package/dist/src/server.d.ts +1 -1
- package/dist/src/server.js +1 -1
- package/package.json +1 -1
- package/src/server.ts +1 -1
package/README.md
CHANGED
|
@@ -72,7 +72,7 @@ curl -s https://radmail.ai/.well-known/agent-safety.json
|
|
|
72
72
|
}
|
|
73
73
|
```
|
|
74
74
|
|
|
75
|
-
>
|
|
75
|
+
> `radmail-mcp` is live on npm — the `npx` line above works as-is. Prefer no install at all? Use the **zero-auth hosted sandbox above**.
|
|
76
76
|
|
|
77
77
|
Or from source: `git clone https://github.com/dougsureel-tech/radmail-mcp && npm i && npm run build && npm start` (stdio). Hosted deploy: Vercel Node serverless function (`api/mcp.ts`; `/` rewrites to the MCP handler).
|
|
78
78
|
|
package/dist/src/server.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
|
2
2
|
import { SAFETY_BLOCK } from "./lib/taint.js";
|
|
3
3
|
export declare const SERVER_INFO: {
|
|
4
4
|
readonly name: "radmail-mcp";
|
|
5
|
-
readonly version: "0.3.
|
|
5
|
+
readonly version: "0.3.2";
|
|
6
6
|
};
|
|
7
7
|
export declare const SERVER_INSTRUCTIONS: string;
|
|
8
8
|
export declare function createServer(): McpServer;
|
package/dist/src/server.js
CHANGED
|
@@ -6,7 +6,7 @@ import { TOOL_DEFS } from "./tools.js";
|
|
|
6
6
|
import { SAFETY_BLOCK } from "./lib/taint.js";
|
|
7
7
|
export const SERVER_INFO = {
|
|
8
8
|
name: "radmail-mcp",
|
|
9
|
-
version: "0.3.
|
|
9
|
+
version: "0.3.2",
|
|
10
10
|
};
|
|
11
11
|
export const SERVER_INSTRUCTIONS = "RadMail is an email operating system for agents: two-axis triage (importance × urgency), a 'Right Now' " +
|
|
12
12
|
"lane, explainable why-surfaced, commitment follow-through, and reviewable drafts. Start anywhere — call " +
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "radmail-mcp",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "RadMail MCP server \u2014 email operating system for agents: two-axis triage (importance x urgency), a 'Right Now' lane, commitment follow-through, reviewable drafts, and a machine-verifiable BEC hard-stop (money / changed-banking / first-contact / decision / injection = human-only forever). Zero-auth in-memory sandbox, plus read-only CONNECTED mode: set RADMAIL_API_KEY and `search`/`read_email`/`list_right_now`/`list_commitments` work on your real RadMail inbox.",
|
|
6
6
|
"license": "MIT",
|