decoy-mcp-server 1.0.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.
package/package.json ADDED
@@ -0,0 +1,50 @@
1
+ {
2
+ "name": "decoy-mcp-server",
3
+ "version": "1.0.0",
4
+ "description": "Local MCP bridge for Decoy — lets an AI agent manage your decoy email identities and accounts (create, list, fill credentials) end-to-end encrypted. The bridge decrypts on your machine; Decoy's servers stay blind.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "decoy-mcp-server": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md"
13
+ ],
14
+ "engines": {
15
+ "node": ">=18"
16
+ },
17
+ "keywords": [
18
+ "mcp",
19
+ "model-context-protocol",
20
+ "decoy",
21
+ "email",
22
+ "privacy",
23
+ "agent",
24
+ "claude"
25
+ ],
26
+ "homepage": "https://decoys.me/documentation",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/justinplatz/decoy-api.git",
30
+ "directory": "mcp-server"
31
+ },
32
+ "license": "MIT",
33
+ "scripts": {
34
+ "build": "tsc",
35
+ "start": "node dist/index.js",
36
+ "dev": "tsx src/index.ts",
37
+ "test": "node --import tsx --test tests/*.test.ts",
38
+ "test:watch": "node --import tsx --test --watch tests/*.test.ts"
39
+ },
40
+ "dependencies": {
41
+ "@modelcontextprotocol/sdk": "^1.29.0",
42
+ "express": "^4.19.2"
43
+ },
44
+ "devDependencies": {
45
+ "@types/express": "^4.17.21",
46
+ "@types/node": "^20.10.0",
47
+ "tsx": "^4.7.0",
48
+ "typescript": "^5.3.0"
49
+ }
50
+ }