shipmail-mcp 0.1.0

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +99 -0
  3. package/dist/index.js +1756 -0
  4. package/package.json +53 -0
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "shipmail-mcp",
3
+ "version": "0.1.0",
4
+ "description": "Official MCP server for ShipMail",
5
+ "type": "module",
6
+ "bin": "./dist/index.js",
7
+ "files": [
8
+ "dist",
9
+ "README.md",
10
+ "LICENSE"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup",
14
+ "dev": "tsx src/index.ts",
15
+ "typecheck": "tsc --noEmit",
16
+ "test": "bun test"
17
+ },
18
+ "keywords": [
19
+ "shipmail",
20
+ "mcp",
21
+ "model-context-protocol",
22
+ "email",
23
+ "email-api"
24
+ ],
25
+ "author": "ShipMail",
26
+ "license": "MIT",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/jcoulaud/ShipMail.git",
30
+ "directory": "packages/shipmail-mcp"
31
+ },
32
+ "homepage": "https://shipmail.to/docs/mcp",
33
+ "bugs": {
34
+ "url": "https://github.com/jcoulaud/ShipMail/issues"
35
+ },
36
+ "engines": {
37
+ "node": ">=20"
38
+ },
39
+ "publishConfig": {
40
+ "access": "public",
41
+ "provenance": false
42
+ },
43
+ "dependencies": {
44
+ "@modelcontextprotocol/sdk": "1.29.0",
45
+ "shipmail": "0.1.19",
46
+ "zod": "4.3.6"
47
+ },
48
+ "devDependencies": {
49
+ "tsup": "^8.4.0",
50
+ "tsx": "^4.19.0",
51
+ "typescript": "^5.8.3"
52
+ }
53
+ }