courier-mcp 0.1.3 → 0.1.4
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/package.json +2 -2
- package/server.mjs +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "courier-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "MCP server for durable AI agent email identity infrastructure. Persistent inboxes, OTP/magic link extraction, scoped credentials, and governed outbound without Gmail OAuth.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -37,4 +37,4 @@
|
|
|
37
37
|
"server.mjs",
|
|
38
38
|
"package.json"
|
|
39
39
|
]
|
|
40
|
-
}
|
|
40
|
+
}
|
package/server.mjs
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
/**
|
|
4
4
|
* courier-mcp — MCP server for Courier
|
|
5
5
|
*
|
|
6
|
-
* Give your AI agent
|
|
7
|
-
*
|
|
6
|
+
* Give your AI agent a durable email identity in under 5 seconds.
|
|
7
|
+
* Persistent inbox, OTP/magic link extraction, scoped credentials.
|
|
8
8
|
*
|
|
9
9
|
* MCP Tools:
|
|
10
|
-
* create_inbox — Create a
|
|
10
|
+
* create_inbox — Create a durable agent email inbox (no signup)
|
|
11
11
|
* get_inbox — Check an inbox for received emails
|
|
12
12
|
* wait_for_email — Poll until an email arrives (auto-retry)
|
|
13
13
|
* extract_otp — Extract verification codes from inbox
|
|
@@ -36,7 +36,7 @@ async function handleRequest(req) {
|
|
|
36
36
|
tools: [
|
|
37
37
|
{
|
|
38
38
|
name: 'create_inbox',
|
|
39
|
-
description: 'Create a
|
|
39
|
+
description: 'Create a durable agent email identity. Persistent inbox with scoped credentials.. No signup, no auth.',
|
|
40
40
|
inputSchema: {
|
|
41
41
|
type: 'object',
|
|
42
42
|
properties: {
|
|
@@ -239,4 +239,4 @@ for await (const line of rl) {
|
|
|
239
239
|
} catch (e) {
|
|
240
240
|
send({ jsonrpc: '2.0', error: { code: -32700, message: e.message }, id: null });
|
|
241
241
|
}
|
|
242
|
-
}
|
|
242
|
+
}
|