@studiometa/productive-mcp 0.8.5 → 0.9.1
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 +84 -412
- package/dist/auth.js +37 -36
- package/dist/auth.js.map +1 -1
- package/dist/crypto.js +100 -61
- package/dist/crypto.js.map +1 -1
- package/dist/formatters.d.ts +18 -2
- package/dist/formatters.d.ts.map +1 -1
- package/dist/handlers/attachments.d.ts +6 -0
- package/dist/handlers/attachments.d.ts.map +1 -0
- package/dist/handlers/bookings.d.ts +1 -1
- package/dist/handlers/bookings.d.ts.map +1 -1
- package/dist/handlers/budgets.d.ts +9 -0
- package/dist/handlers/budgets.d.ts.map +1 -0
- package/dist/handlers/comments.d.ts +1 -1
- package/dist/handlers/comments.d.ts.map +1 -1
- package/dist/handlers/companies.d.ts +6 -2
- package/dist/handlers/companies.d.ts.map +1 -1
- package/dist/handlers/deals.d.ts +6 -2
- package/dist/handlers/deals.d.ts.map +1 -1
- package/dist/handlers/discussions.d.ts +13 -0
- package/dist/handlers/discussions.d.ts.map +1 -0
- package/dist/handlers/help.d.ts.map +1 -1
- package/dist/handlers/index.d.ts.map +1 -1
- package/dist/handlers/pages.d.ts +13 -0
- package/dist/handlers/pages.d.ts.map +1 -0
- package/dist/handlers/people.d.ts +6 -2
- package/dist/handlers/people.d.ts.map +1 -1
- package/dist/handlers/projects.d.ts +6 -2
- package/dist/handlers/projects.d.ts.map +1 -1
- package/dist/handlers/reports.d.ts +1 -4
- package/dist/handlers/reports.d.ts.map +1 -1
- package/dist/handlers/resolve.d.ts +24 -0
- package/dist/handlers/resolve.d.ts.map +1 -0
- package/dist/handlers/services.d.ts +1 -1
- package/dist/handlers/services.d.ts.map +1 -1
- package/dist/handlers/tasks.d.ts +6 -2
- package/dist/handlers/tasks.d.ts.map +1 -1
- package/dist/handlers/time.d.ts +10 -2
- package/dist/handlers/time.d.ts.map +1 -1
- package/dist/handlers/timers.d.ts +1 -1
- package/dist/handlers/timers.d.ts.map +1 -1
- package/dist/handlers/types.d.ts +42 -3
- package/dist/handlers/types.d.ts.map +1 -1
- package/dist/handlers-BYE2INiR.js +2681 -0
- package/dist/handlers-BYE2INiR.js.map +1 -0
- package/dist/handlers.js +2 -5
- package/dist/hints.d.ts +16 -0
- package/dist/hints.d.ts.map +1 -1
- package/dist/http.js +139 -160
- package/dist/http.js.map +1 -1
- package/dist/index.js +74 -54
- package/dist/index.js.map +1 -1
- package/dist/oauth.js +285 -255
- package/dist/oauth.js.map +1 -1
- package/dist/schema.d.ts +17 -0
- package/dist/schema.d.ts.map +1 -1
- package/dist/server.js +67 -50
- package/dist/server.js.map +1 -1
- package/dist/stdio.js +85 -105
- package/dist/stdio.js.map +1 -1
- package/dist/tools.js +155 -145
- package/dist/tools.js.map +1 -1
- package/dist/version-D3sSBq_j.js +29 -0
- package/dist/version-D3sSBq_j.js.map +1 -0
- package/package.json +10 -10
- package/skills/SKILL.md +209 -13
- package/Dockerfile +0 -36
- package/dist/handlers.js.map +0 -1
- package/dist/index-CZpVCEu4.js +0 -1681
- package/dist/index-CZpVCEu4.js.map +0 -1
- package/dist/version-BPy06P7x.js +0 -21
- package/dist/version-BPy06P7x.js.map +0 -1
package/dist/crypto.js
CHANGED
|
@@ -1,73 +1,112 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
import { createCipheriv, createDecipheriv, randomBytes, scryptSync } from "node:crypto";
|
|
2
|
+
/**
|
|
3
|
+
* Cryptographic utilities for stateless OAuth tokens
|
|
4
|
+
*
|
|
5
|
+
* Uses AES-256-GCM for authenticated encryption.
|
|
6
|
+
* The authorization code contains encrypted credentials that can be
|
|
7
|
+
* decrypted without server-side storage.
|
|
8
|
+
*/
|
|
9
|
+
var ALGORITHM = "aes-256-gcm";
|
|
10
|
+
var IV_LENGTH = 12;
|
|
11
|
+
var AUTH_TAG_LENGTH = 16;
|
|
12
|
+
var SALT_LENGTH = 16;
|
|
13
|
+
/**
|
|
14
|
+
* Derive a 256-bit key from a password using scrypt
|
|
15
|
+
*/
|
|
6
16
|
function deriveKey(password, salt) {
|
|
7
|
-
|
|
17
|
+
return scryptSync(password, salt, 32);
|
|
8
18
|
}
|
|
19
|
+
/**
|
|
20
|
+
* Get the encryption secret from environment or generate a default
|
|
21
|
+
* In production, OAUTH_SECRET should always be set
|
|
22
|
+
*/
|
|
9
23
|
function getSecret() {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
}
|
|
17
|
-
return secret;
|
|
24
|
+
const secret = process.env.OAUTH_SECRET;
|
|
25
|
+
if (!secret) {
|
|
26
|
+
console.warn("WARNING: OAUTH_SECRET not set. Using default secret. Set OAUTH_SECRET in production!");
|
|
27
|
+
return "productive-mcp-default-secret-change-me";
|
|
28
|
+
}
|
|
29
|
+
return secret;
|
|
18
30
|
}
|
|
31
|
+
/**
|
|
32
|
+
* Encrypt data using AES-256-GCM
|
|
33
|
+
*
|
|
34
|
+
* Output format: base64(salt + iv + authTag + ciphertext)
|
|
35
|
+
*
|
|
36
|
+
* @param plaintext - Data to encrypt
|
|
37
|
+
* @param secret - Encryption secret (defaults to OAUTH_SECRET env var)
|
|
38
|
+
* @returns Base64-encoded encrypted data
|
|
39
|
+
*/
|
|
19
40
|
function encrypt(plaintext, secret = getSecret()) {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
41
|
+
const salt = randomBytes(SALT_LENGTH);
|
|
42
|
+
const key = deriveKey(secret, salt);
|
|
43
|
+
const iv = randomBytes(IV_LENGTH);
|
|
44
|
+
const cipher = createCipheriv(ALGORITHM, key, iv);
|
|
45
|
+
const encrypted = Buffer.concat([cipher.update(plaintext, "utf8"), cipher.final()]);
|
|
46
|
+
const authTag = cipher.getAuthTag();
|
|
47
|
+
return Buffer.concat([
|
|
48
|
+
salt,
|
|
49
|
+
iv,
|
|
50
|
+
authTag,
|
|
51
|
+
encrypted
|
|
52
|
+
]).toString("base64url");
|
|
28
53
|
}
|
|
54
|
+
/**
|
|
55
|
+
* Decrypt data encrypted with encrypt()
|
|
56
|
+
*
|
|
57
|
+
* @param ciphertext - Base64-encoded encrypted data
|
|
58
|
+
* @param secret - Encryption secret (defaults to OAUTH_SECRET env var)
|
|
59
|
+
* @returns Decrypted plaintext
|
|
60
|
+
* @throws Error if decryption fails (invalid data or wrong secret)
|
|
61
|
+
*/
|
|
29
62
|
function decrypt(ciphertext, secret = getSecret()) {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
const decrypted = Buffer.concat([decipher.update(encrypted), decipher.final()]);
|
|
43
|
-
return decrypted.toString("utf8");
|
|
44
|
-
} catch {
|
|
45
|
-
throw new Error("Decryption failed: invalid token or secret");
|
|
46
|
-
}
|
|
63
|
+
try {
|
|
64
|
+
const combined = Buffer.from(ciphertext, "base64url");
|
|
65
|
+
const salt = combined.subarray(0, SALT_LENGTH);
|
|
66
|
+
const iv = combined.subarray(SALT_LENGTH, SALT_LENGTH + IV_LENGTH);
|
|
67
|
+
const authTag = combined.subarray(SALT_LENGTH + IV_LENGTH, SALT_LENGTH + IV_LENGTH + AUTH_TAG_LENGTH);
|
|
68
|
+
const encrypted = combined.subarray(SALT_LENGTH + IV_LENGTH + AUTH_TAG_LENGTH);
|
|
69
|
+
const decipher = createDecipheriv(ALGORITHM, deriveKey(secret, salt), iv, { authTagLength: AUTH_TAG_LENGTH });
|
|
70
|
+
decipher.setAuthTag(authTag);
|
|
71
|
+
return Buffer.concat([decipher.update(encrypted), decipher.final()]).toString("utf8");
|
|
72
|
+
} catch {
|
|
73
|
+
throw new Error("Decryption failed: invalid token or secret");
|
|
74
|
+
}
|
|
47
75
|
}
|
|
76
|
+
/**
|
|
77
|
+
* Create an encrypted authorization code containing credentials and PKCE challenge
|
|
78
|
+
*
|
|
79
|
+
* @param credentials - Object with orgId, apiToken, userId, and optional PKCE params
|
|
80
|
+
* @param expiresInSeconds - Code expiration time (default: 5 minutes)
|
|
81
|
+
* @returns Encrypted authorization code
|
|
82
|
+
*/
|
|
48
83
|
function createAuthCode(credentials, expiresInSeconds = 300) {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
84
|
+
const payload = {
|
|
85
|
+
...credentials,
|
|
86
|
+
exp: Date.now() + expiresInSeconds * 1e3
|
|
87
|
+
};
|
|
88
|
+
return encrypt(JSON.stringify(payload));
|
|
54
89
|
}
|
|
90
|
+
/**
|
|
91
|
+
* Decode and validate an authorization code
|
|
92
|
+
*
|
|
93
|
+
* @param code - Encrypted authorization code
|
|
94
|
+
* @returns Decoded payload with credentials and PKCE challenge
|
|
95
|
+
* @throws Error if code is invalid or expired
|
|
96
|
+
*/
|
|
55
97
|
function decodeAuthCode(code) {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
98
|
+
const payload = JSON.parse(decrypt(code));
|
|
99
|
+
if (payload.exp && Date.now() > payload.exp) throw new Error("Authorization code expired");
|
|
100
|
+
const { orgId, apiToken, userId, codeChallenge, codeChallengeMethod } = payload;
|
|
101
|
+
if (!orgId || !apiToken) throw new Error("Invalid authorization code: missing credentials");
|
|
102
|
+
return {
|
|
103
|
+
orgId,
|
|
104
|
+
apiToken,
|
|
105
|
+
userId,
|
|
106
|
+
codeChallenge,
|
|
107
|
+
codeChallengeMethod
|
|
108
|
+
};
|
|
65
109
|
}
|
|
66
|
-
export {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
decrypt,
|
|
70
|
-
encrypt,
|
|
71
|
-
getSecret
|
|
72
|
-
};
|
|
73
|
-
//# sourceMappingURL=crypto.js.map
|
|
110
|
+
export { createAuthCode, decodeAuthCode, decrypt, encrypt, getSecret };
|
|
111
|
+
|
|
112
|
+
//# sourceMappingURL=crypto.js.map
|
package/dist/crypto.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"crypto.js","sources":["../src/crypto.ts"],"sourcesContent":["/**\n * Cryptographic utilities for stateless OAuth tokens\n *\n * Uses AES-256-GCM for authenticated encryption.\n * The authorization code contains encrypted credentials that can be\n * decrypted without server-side storage.\n */\n\nimport { createCipheriv, createDecipheriv, randomBytes, scryptSync } from 'node:crypto';\n\nconst ALGORITHM = 'aes-256-gcm';\nconst IV_LENGTH = 12; // GCM recommended IV length\nconst AUTH_TAG_LENGTH = 16;\nconst SALT_LENGTH = 16;\n\n/**\n * Derive a 256-bit key from a password using scrypt\n */\nfunction deriveKey(password: string, salt: Buffer): Buffer {\n return scryptSync(password, salt, 32);\n}\n\n/**\n * Get the encryption secret from environment or generate a default\n * In production, OAUTH_SECRET should always be set\n */\nexport function getSecret(): string {\n const secret = process.env.OAUTH_SECRET;\n if (!secret) {\n console.warn(\n 'WARNING: OAUTH_SECRET not set. Using default secret. Set OAUTH_SECRET in production!',\n );\n return 'productive-mcp-default-secret-change-me';\n }\n return secret;\n}\n\n/**\n * Encrypt data using AES-256-GCM\n *\n * Output format: base64(salt + iv + authTag + ciphertext)\n *\n * @param plaintext - Data to encrypt\n * @param secret - Encryption secret (defaults to OAUTH_SECRET env var)\n * @returns Base64-encoded encrypted data\n */\nexport function encrypt(plaintext: string, secret: string = getSecret()): string {\n const salt = randomBytes(SALT_LENGTH);\n const key = deriveKey(secret, salt);\n const iv = randomBytes(IV_LENGTH);\n\n const cipher = createCipheriv(ALGORITHM, key, iv);\n const encrypted = Buffer.concat([cipher.update(plaintext, 'utf8'), cipher.final()]);\n const authTag = cipher.getAuthTag();\n\n // Combine: salt + iv + authTag + ciphertext\n const combined = Buffer.concat([salt, iv, authTag, encrypted]);\n\n return combined.toString('base64url');\n}\n\n/**\n * Decrypt data encrypted with encrypt()\n *\n * @param ciphertext - Base64-encoded encrypted data\n * @param secret - Encryption secret (defaults to OAUTH_SECRET env var)\n * @returns Decrypted plaintext\n * @throws Error if decryption fails (invalid data or wrong secret)\n */\nexport function decrypt(ciphertext: string, secret: string = getSecret()): string {\n try {\n const combined = Buffer.from(ciphertext, 'base64url');\n\n // Extract components\n const salt = combined.subarray(0, SALT_LENGTH);\n const iv = combined.subarray(SALT_LENGTH, SALT_LENGTH + IV_LENGTH);\n const authTag = combined.subarray(\n SALT_LENGTH + IV_LENGTH,\n SALT_LENGTH + IV_LENGTH + AUTH_TAG_LENGTH,\n );\n const encrypted = combined.subarray(SALT_LENGTH + IV_LENGTH + AUTH_TAG_LENGTH);\n\n const key = deriveKey(secret, salt);\n\n const decipher = createDecipheriv(ALGORITHM, key, iv, { authTagLength: AUTH_TAG_LENGTH });\n decipher.setAuthTag(authTag);\n\n const decrypted = Buffer.concat([decipher.update(encrypted), decipher.final()]);\n\n return decrypted.toString('utf8');\n } catch {\n throw new Error('Decryption failed: invalid token or secret');\n }\n}\n\n/**\n * Authorization code payload structure\n */\nexport interface AuthCodePayload {\n orgId: string;\n apiToken: string;\n userId?: string;\n codeChallenge?: string;\n codeChallengeMethod?: string;\n}\n\n/**\n * Create an encrypted authorization code containing credentials and PKCE challenge\n *\n * @param credentials - Object with orgId, apiToken, userId, and optional PKCE params\n * @param expiresInSeconds - Code expiration time (default: 5 minutes)\n * @returns Encrypted authorization code\n */\nexport function createAuthCode(\n credentials: AuthCodePayload,\n expiresInSeconds: number = 300,\n): string {\n const payload = {\n ...credentials,\n exp: Date.now() + expiresInSeconds * 1000,\n };\n return encrypt(JSON.stringify(payload));\n}\n\n/**\n * Decode and validate an authorization code\n *\n * @param code - Encrypted authorization code\n * @returns Decoded payload with credentials and PKCE challenge\n * @throws Error if code is invalid or expired\n */\nexport function decodeAuthCode(code: string): AuthCodePayload {\n const payload = JSON.parse(decrypt(code));\n\n if (payload.exp && Date.now() > payload.exp) {\n throw new Error('Authorization code expired');\n }\n\n const { orgId, apiToken, userId, codeChallenge, codeChallengeMethod } = payload;\n\n if (!orgId || !apiToken) {\n throw new Error('Invalid authorization code: missing credentials');\n }\n\n return { orgId, apiToken, userId, codeChallenge, codeChallengeMethod };\n}\n"],"
|
|
1
|
+
{"version":3,"file":"crypto.js","names":[],"sources":["../src/crypto.ts"],"sourcesContent":["/**\n * Cryptographic utilities for stateless OAuth tokens\n *\n * Uses AES-256-GCM for authenticated encryption.\n * The authorization code contains encrypted credentials that can be\n * decrypted without server-side storage.\n */\n\nimport { createCipheriv, createDecipheriv, randomBytes, scryptSync } from 'node:crypto';\n\nconst ALGORITHM = 'aes-256-gcm';\nconst IV_LENGTH = 12; // GCM recommended IV length\nconst AUTH_TAG_LENGTH = 16;\nconst SALT_LENGTH = 16;\n\n/**\n * Derive a 256-bit key from a password using scrypt\n */\nfunction deriveKey(password: string, salt: Buffer): Buffer {\n return scryptSync(password, salt, 32);\n}\n\n/**\n * Get the encryption secret from environment or generate a default\n * In production, OAUTH_SECRET should always be set\n */\nexport function getSecret(): string {\n const secret = process.env.OAUTH_SECRET;\n if (!secret) {\n console.warn(\n 'WARNING: OAUTH_SECRET not set. Using default secret. Set OAUTH_SECRET in production!',\n );\n return 'productive-mcp-default-secret-change-me';\n }\n return secret;\n}\n\n/**\n * Encrypt data using AES-256-GCM\n *\n * Output format: base64(salt + iv + authTag + ciphertext)\n *\n * @param plaintext - Data to encrypt\n * @param secret - Encryption secret (defaults to OAUTH_SECRET env var)\n * @returns Base64-encoded encrypted data\n */\nexport function encrypt(plaintext: string, secret: string = getSecret()): string {\n const salt = randomBytes(SALT_LENGTH);\n const key = deriveKey(secret, salt);\n const iv = randomBytes(IV_LENGTH);\n\n const cipher = createCipheriv(ALGORITHM, key, iv);\n const encrypted = Buffer.concat([cipher.update(plaintext, 'utf8'), cipher.final()]);\n const authTag = cipher.getAuthTag();\n\n // Combine: salt + iv + authTag + ciphertext\n const combined = Buffer.concat([salt, iv, authTag, encrypted]);\n\n return combined.toString('base64url');\n}\n\n/**\n * Decrypt data encrypted with encrypt()\n *\n * @param ciphertext - Base64-encoded encrypted data\n * @param secret - Encryption secret (defaults to OAUTH_SECRET env var)\n * @returns Decrypted plaintext\n * @throws Error if decryption fails (invalid data or wrong secret)\n */\nexport function decrypt(ciphertext: string, secret: string = getSecret()): string {\n try {\n const combined = Buffer.from(ciphertext, 'base64url');\n\n // Extract components\n const salt = combined.subarray(0, SALT_LENGTH);\n const iv = combined.subarray(SALT_LENGTH, SALT_LENGTH + IV_LENGTH);\n const authTag = combined.subarray(\n SALT_LENGTH + IV_LENGTH,\n SALT_LENGTH + IV_LENGTH + AUTH_TAG_LENGTH,\n );\n const encrypted = combined.subarray(SALT_LENGTH + IV_LENGTH + AUTH_TAG_LENGTH);\n\n const key = deriveKey(secret, salt);\n\n const decipher = createDecipheriv(ALGORITHM, key, iv, { authTagLength: AUTH_TAG_LENGTH });\n decipher.setAuthTag(authTag);\n\n const decrypted = Buffer.concat([decipher.update(encrypted), decipher.final()]);\n\n return decrypted.toString('utf8');\n } catch {\n throw new Error('Decryption failed: invalid token or secret');\n }\n}\n\n/**\n * Authorization code payload structure\n */\nexport interface AuthCodePayload {\n orgId: string;\n apiToken: string;\n userId?: string;\n codeChallenge?: string;\n codeChallengeMethod?: string;\n}\n\n/**\n * Create an encrypted authorization code containing credentials and PKCE challenge\n *\n * @param credentials - Object with orgId, apiToken, userId, and optional PKCE params\n * @param expiresInSeconds - Code expiration time (default: 5 minutes)\n * @returns Encrypted authorization code\n */\nexport function createAuthCode(\n credentials: AuthCodePayload,\n expiresInSeconds: number = 300,\n): string {\n const payload = {\n ...credentials,\n exp: Date.now() + expiresInSeconds * 1000,\n };\n return encrypt(JSON.stringify(payload));\n}\n\n/**\n * Decode and validate an authorization code\n *\n * @param code - Encrypted authorization code\n * @returns Decoded payload with credentials and PKCE challenge\n * @throws Error if code is invalid or expired\n */\nexport function decodeAuthCode(code: string): AuthCodePayload {\n const payload = JSON.parse(decrypt(code));\n\n if (payload.exp && Date.now() > payload.exp) {\n throw new Error('Authorization code expired');\n }\n\n const { orgId, apiToken, userId, codeChallenge, codeChallengeMethod } = payload;\n\n if (!orgId || !apiToken) {\n throw new Error('Invalid authorization code: missing credentials');\n }\n\n return { orgId, apiToken, userId, codeChallenge, codeChallengeMethod };\n}\n"],"mappings":";;;;;;;;AAUA,IAAM,YAAY;AAClB,IAAM,YAAY;AAClB,IAAM,kBAAkB;AACxB,IAAM,cAAc;;;;AAKpB,SAAS,UAAU,UAAkB,MAAsB;AACzD,QAAO,WAAW,UAAU,MAAM,GAAG;;;;;;AAOvC,SAAgB,YAAoB;CAClC,MAAM,SAAS,QAAQ,IAAI;AAC3B,KAAI,CAAC,QAAQ;AACX,UAAQ,KACN,uFACD;AACD,SAAO;;AAET,QAAO;;;;;;;;;;;AAYT,SAAgB,QAAQ,WAAmB,SAAiB,WAAW,EAAU;CAC/E,MAAM,OAAO,YAAY,YAAY;CACrC,MAAM,MAAM,UAAU,QAAQ,KAAK;CACnC,MAAM,KAAK,YAAY,UAAU;CAEjC,MAAM,SAAS,eAAe,WAAW,KAAK,GAAG;CACjD,MAAM,YAAY,OAAO,OAAO,CAAC,OAAO,OAAO,WAAW,OAAO,EAAE,OAAO,OAAO,CAAC,CAAC;CACnF,MAAM,UAAU,OAAO,YAAY;AAKnC,QAFiB,OAAO,OAAO;EAAC;EAAM;EAAI;EAAS;EAAU,CAAC,CAE9C,SAAS,YAAY;;;;;;;;;;AAWvC,SAAgB,QAAQ,YAAoB,SAAiB,WAAW,EAAU;AAChF,KAAI;EACF,MAAM,WAAW,OAAO,KAAK,YAAY,YAAY;EAGrD,MAAM,OAAO,SAAS,SAAS,GAAG,YAAY;EAC9C,MAAM,KAAK,SAAS,SAAS,aAAa,cAAc,UAAU;EAClE,MAAM,UAAU,SAAS,SACvB,cAAc,WACd,cAAc,YAAY,gBAC3B;EACD,MAAM,YAAY,SAAS,SAAS,cAAc,YAAY,gBAAgB;EAI9E,MAAM,WAAW,iBAAiB,WAFtB,UAAU,QAAQ,KAAK,EAEe,IAAI,EAAE,eAAe,iBAAiB,CAAC;AACzF,WAAS,WAAW,QAAQ;AAI5B,SAFkB,OAAO,OAAO,CAAC,SAAS,OAAO,UAAU,EAAE,SAAS,OAAO,CAAC,CAAC,CAE9D,SAAS,OAAO;SAC3B;AACN,QAAM,IAAI,MAAM,6CAA6C;;;;;;;;;;AAsBjE,SAAgB,eACd,aACA,mBAA2B,KACnB;CACR,MAAM,UAAU;EACd,GAAG;EACH,KAAK,KAAK,KAAK,GAAG,mBAAmB;EACtC;AACD,QAAO,QAAQ,KAAK,UAAU,QAAQ,CAAC;;;;;;;;;AAUzC,SAAgB,eAAe,MAA+B;CAC5D,MAAM,UAAU,KAAK,MAAM,QAAQ,KAAK,CAAC;AAEzC,KAAI,QAAQ,OAAO,KAAK,KAAK,GAAG,QAAQ,IACtC,OAAM,IAAI,MAAM,6BAA6B;CAG/C,MAAM,EAAE,OAAO,UAAU,QAAQ,eAAe,wBAAwB;AAExE,KAAI,CAAC,SAAS,CAAC,SACb,OAAM,IAAI,MAAM,kDAAkD;AAGpE,QAAO;EAAE;EAAO;EAAU;EAAQ;EAAe;EAAqB"}
|
package/dist/formatters.d.ts
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Response formatters for agent-friendly output
|
|
3
3
|
*
|
|
4
|
-
* This module re-exports formatters from @studiometa/productive-
|
|
4
|
+
* This module re-exports formatters from @studiometa/productive-api
|
|
5
5
|
* with MCP-specific defaults (no relationship IDs, no timestamps).
|
|
6
6
|
*
|
|
7
7
|
* Supports compact mode to reduce token usage by omitting verbose fields
|
|
8
8
|
* like descriptions and notes from list responses.
|
|
9
9
|
*/
|
|
10
|
-
import { type JsonApiResource, type JsonApiMeta, type FormatOptions, type FormattedPagination } from '@studiometa/productive-
|
|
10
|
+
import { type JsonApiResource, type JsonApiMeta, type FormatOptions, type FormattedPagination } from '@studiometa/productive-api';
|
|
11
11
|
export type { JsonApiResource, JsonApiMeta, FormatOptions, FormattedPagination };
|
|
12
12
|
/**
|
|
13
13
|
* Extended format options for MCP with compact mode
|
|
@@ -37,6 +37,10 @@ export declare function formatPerson(person: JsonApiResource, options?: McpForma
|
|
|
37
37
|
* Format service for agent consumption
|
|
38
38
|
*/
|
|
39
39
|
export declare function formatService(service: JsonApiResource, options?: McpFormatOptions): Record<string, unknown>;
|
|
40
|
+
/**
|
|
41
|
+
* Format budget for agent consumption
|
|
42
|
+
*/
|
|
43
|
+
export declare function formatBudget(budget: JsonApiResource, options?: McpFormatOptions): Record<string, unknown>;
|
|
40
44
|
/**
|
|
41
45
|
* Format company for agent consumption
|
|
42
46
|
*/
|
|
@@ -57,6 +61,18 @@ export declare function formatDeal(deal: JsonApiResource, options?: McpFormatOpt
|
|
|
57
61
|
* Format booking for agent consumption
|
|
58
62
|
*/
|
|
59
63
|
export declare function formatBooking(booking: JsonApiResource, options?: McpFormatOptions): Record<string, unknown>;
|
|
64
|
+
/**
|
|
65
|
+
* Format attachment for agent consumption
|
|
66
|
+
*/
|
|
67
|
+
export declare function formatAttachment(attachment: JsonApiResource, options?: McpFormatOptions): Record<string, unknown>;
|
|
68
|
+
/**
|
|
69
|
+
* Format page for agent consumption
|
|
70
|
+
*/
|
|
71
|
+
export declare function formatPage(page: JsonApiResource, options?: McpFormatOptions): Record<string, unknown>;
|
|
72
|
+
/**
|
|
73
|
+
* Format discussion for agent consumption
|
|
74
|
+
*/
|
|
75
|
+
export declare function formatDiscussion(discussion: JsonApiResource, options?: McpFormatOptions): Record<string, unknown>;
|
|
60
76
|
/**
|
|
61
77
|
* Format list response with pagination
|
|
62
78
|
*
|
package/dist/formatters.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formatters.d.ts","sourceRoot":"","sources":["../src/formatters.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,
|
|
1
|
+
{"version":3,"file":"formatters.d.ts","sourceRoot":"","sources":["../src/formatters.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Attachments MCP handler.
|
|
3
|
+
*/
|
|
4
|
+
import type { AttachmentArgs, HandlerContext, ToolResult } from './types.js';
|
|
5
|
+
export declare function handleAttachments(action: string, args: AttachmentArgs, ctx: HandlerContext): Promise<ToolResult>;
|
|
6
|
+
//# sourceMappingURL=attachments.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"attachments.d.ts","sourceRoot":"","sources":["../../src/handlers/attachments.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,KAAK,EAAE,cAAc,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAS7E,wBAAsB,iBAAiB,CACrC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,cAAc,EACpB,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CAwCrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookings.d.ts","sourceRoot":"","sources":["../../src/handlers/bookings.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"bookings.d.ts","sourceRoot":"","sources":["../../src/handlers/bookings.ts"],"names":[],"mappings":"AAAA;;GAEG;AASH,OAAO,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAS1E,wBAAsB,cAAc,CAClC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,WAAW,EACjB,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CAqErB"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Budgets MCP handler.
|
|
3
|
+
*
|
|
4
|
+
* Thin adapter that delegates business logic to core executors
|
|
5
|
+
* and handles MCP-specific concerns (hints, error formatting, JSON results).
|
|
6
|
+
*/
|
|
7
|
+
import type { CommonArgs, HandlerContext, ToolResult } from './types.js';
|
|
8
|
+
export declare function handleBudgets(action: string, args: CommonArgs, ctx: HandlerContext): Promise<ToolResult>;
|
|
9
|
+
//# sourceMappingURL=budgets.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"budgets.d.ts","sourceRoot":"","sources":["../../src/handlers/budgets.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AASzE,wBAAsB,aAAa,CACjC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,UAAU,EAChB,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CAiCrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"comments.d.ts","sourceRoot":"","sources":["../../src/handlers/comments.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"comments.d.ts","sourceRoot":"","sources":["../../src/handlers/comments.ts"],"names":[],"mappings":"AAAA;;GAEG;AASH,OAAO,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAS1E,wBAAsB,cAAc,CAClC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,WAAW,EACjB,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CA2DrB"}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Companies
|
|
2
|
+
* Companies MCP handler.
|
|
3
3
|
*/
|
|
4
4
|
import type { CompanyArgs, HandlerContext, ToolResult } from './types.js';
|
|
5
|
-
|
|
5
|
+
import { type ResolvableResourceType } from './resolve.js';
|
|
6
|
+
export declare function handleCompanies(action: string, args: CompanyArgs & {
|
|
7
|
+
query?: string;
|
|
8
|
+
type?: ResolvableResourceType;
|
|
9
|
+
}, ctx: HandlerContext): Promise<ToolResult>;
|
|
6
10
|
//# sourceMappingURL=companies.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"companies.d.ts","sourceRoot":"","sources":["../../src/handlers/companies.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"companies.d.ts","sourceRoot":"","sources":["../../src/handlers/companies.ts"],"names":[],"mappings":"AAAA;;GAEG;AASH,OAAO,KAAK,EAAE,WAAW,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAK1E,OAAO,EAAiB,KAAK,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAK1E,wBAAsB,eAAe,CACnC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,WAAW,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,sBAAsB,CAAA;CAAE,EACrE,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CAgDrB"}
|
package/dist/handlers/deals.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Deals
|
|
2
|
+
* Deals MCP handler.
|
|
3
3
|
*/
|
|
4
4
|
import type { DealArgs, HandlerContext, ToolResult } from './types.js';
|
|
5
|
-
|
|
5
|
+
import { type ResolvableResourceType } from './resolve.js';
|
|
6
|
+
export declare function handleDeals(action: string, args: DealArgs & {
|
|
7
|
+
query?: string;
|
|
8
|
+
type?: ResolvableResourceType;
|
|
9
|
+
}, ctx: HandlerContext): Promise<ToolResult>;
|
|
6
10
|
//# sourceMappingURL=deals.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"deals.d.ts","sourceRoot":"","sources":["../../src/handlers/deals.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"deals.d.ts","sourceRoot":"","sources":["../../src/handlers/deals.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,KAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAKvE,OAAO,EAAiB,KAAK,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAK1E,wBAAsB,WAAW,CAC/B,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,QAAQ,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,sBAAsB,CAAA;CAAE,EAClE,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CA2DrB"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Discussions MCP handler.
|
|
3
|
+
*/
|
|
4
|
+
import type { HandlerContext, ToolResult } from './types.js';
|
|
5
|
+
export interface DiscussionArgs {
|
|
6
|
+
id?: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
body?: string;
|
|
9
|
+
page_id?: string;
|
|
10
|
+
status?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare function handleDiscussions(action: string, args: DiscussionArgs, ctx: HandlerContext): Promise<ToolResult>;
|
|
13
|
+
//# sourceMappingURL=discussions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"discussions.d.ts","sourceRoot":"","sources":["../../src/handlers/discussions.ts"],"names":[],"mappings":"AAAA;;GAEG;AAYH,OAAO,KAAK,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAO7D,MAAM,WAAW,cAAc;IAC7B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAID,wBAAsB,iBAAiB,CACrC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,cAAc,EACpB,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CAmFrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"help.d.ts","sourceRoot":"","sources":["../../src/handlers/help.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"help.d.ts","sourceRoot":"","sources":["../../src/handlers/help.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AA4oB7C;;GAEG;AACH,wBAAgB,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,CAcvD;AAED;;GAEG;AACH,wBAAgB,kBAAkB,IAAI,UAAU,CAW/C"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/handlers/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/handlers/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAKH,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAExD,OAAO,KAAK,EAAkB,UAAU,EAAE,MAAM,YAAY,CAAC;AAwB7D,YAAY,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AA2E7C;;GAEG;AACH,wBAAsB,0BAA0B,CAC9C,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC7B,WAAW,EAAE,qBAAqB,GACjC,OAAO,CAAC,UAAU,CAAC,CAkIrB"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pages MCP handler.
|
|
3
|
+
*/
|
|
4
|
+
import type { HandlerContext, ToolResult } from './types.js';
|
|
5
|
+
export interface PageArgs {
|
|
6
|
+
id?: string;
|
|
7
|
+
title?: string;
|
|
8
|
+
body?: string;
|
|
9
|
+
project_id?: string;
|
|
10
|
+
parent_page_id?: string;
|
|
11
|
+
}
|
|
12
|
+
export declare function handlePages(action: string, args: PageArgs, ctx: HandlerContext): Promise<ToolResult>;
|
|
13
|
+
//# sourceMappingURL=pages.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pages.d.ts","sourceRoot":"","sources":["../../src/handlers/pages.ts"],"names":[],"mappings":"AAAA;;GAEG;AAUH,OAAO,KAAK,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAO7D,MAAM,WAAW,QAAQ;IACvB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAID,wBAAsB,WAAW,CAC/B,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,QAAQ,EACd,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CA0DrB"}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* People
|
|
2
|
+
* People MCP handler.
|
|
3
3
|
*/
|
|
4
4
|
import type { ProductiveCredentials } from '../auth.js';
|
|
5
5
|
import type { CommonArgs, HandlerContext, ToolResult } from './types.js';
|
|
6
|
-
|
|
6
|
+
import { type ResolvableResourceType } from './resolve.js';
|
|
7
|
+
export declare function handlePeople(action: string, args: CommonArgs & {
|
|
8
|
+
query?: string;
|
|
9
|
+
type?: ResolvableResourceType;
|
|
10
|
+
}, ctx: HandlerContext, credentials: ProductiveCredentials): Promise<ToolResult>;
|
|
7
11
|
//# sourceMappingURL=people.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"people.d.ts","sourceRoot":"","sources":["../../src/handlers/people.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"people.d.ts","sourceRoot":"","sources":["../../src/handlers/people.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,YAAY,CAAC;AACxD,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAKzE,OAAO,EAAiB,KAAK,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAK1E,wBAAsB,YAAY,CAChC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,UAAU,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,sBAAsB,CAAA;CAAE,EACpE,GAAG,EAAE,cAAc,EACnB,WAAW,EAAE,qBAAqB,GACjC,OAAO,CAAC,UAAU,CAAC,CAmDrB"}
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Projects
|
|
2
|
+
* Projects MCP handler.
|
|
3
3
|
*/
|
|
4
4
|
import type { CommonArgs, HandlerContext, ToolResult } from './types.js';
|
|
5
|
-
|
|
5
|
+
import { type ResolvableResourceType } from './resolve.js';
|
|
6
|
+
export declare function handleProjects(action: string, args: CommonArgs & {
|
|
7
|
+
query?: string;
|
|
8
|
+
type?: ResolvableResourceType;
|
|
9
|
+
}, ctx: HandlerContext): Promise<ToolResult>;
|
|
6
10
|
//# sourceMappingURL=projects.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"projects.d.ts","sourceRoot":"","sources":["../../src/handlers/projects.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"projects.d.ts","sourceRoot":"","sources":["../../src/handlers/projects.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAKzE,OAAO,EAAiB,KAAK,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAK1E,wBAAsB,cAAc,CAClC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,UAAU,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,sBAAsB,CAAA;CAAE,EACpE,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CAuCrB"}
|
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Reports
|
|
2
|
+
* Reports MCP handler.
|
|
3
3
|
*/
|
|
4
4
|
import type { CommonArgs, HandlerContext, ToolResult } from './types.js';
|
|
5
|
-
/**
|
|
6
|
-
* Report-specific args
|
|
7
|
-
*/
|
|
8
5
|
interface ReportArgs extends CommonArgs {
|
|
9
6
|
report_type?: string;
|
|
10
7
|
group?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"reports.d.ts","sourceRoot":"","sources":["../../src/handlers/reports.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"reports.d.ts","sourceRoot":"","sources":["../../src/handlers/reports.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAKzE,UAAU,UAAW,SAAQ,UAAU;IACrC,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAeD,wBAAsB,aAAa,CACjC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,UAAU,EAChB,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CA0CrB"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Resolve handler for MCP.
|
|
3
|
+
*
|
|
4
|
+
* Thin wrapper around core's resource resolver.
|
|
5
|
+
* Provides handleResolve for the MCP 'resolve' action.
|
|
6
|
+
*/
|
|
7
|
+
import type { HandlerContext, ToolResult } from './types.js';
|
|
8
|
+
export type { ResolvableResourceType, ResolveResult } from '@studiometa/productive-core';
|
|
9
|
+
/**
|
|
10
|
+
* Arguments for resolve action
|
|
11
|
+
*/
|
|
12
|
+
interface ResolveArgs {
|
|
13
|
+
query?: string;
|
|
14
|
+
type?: 'person' | 'project' | 'company' | 'deal' | 'service';
|
|
15
|
+
project_id?: string;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Handle resolve action for a resource.
|
|
19
|
+
*
|
|
20
|
+
* Delegates to core's resolveResource function and wraps
|
|
21
|
+
* errors in MCP-friendly format.
|
|
22
|
+
*/
|
|
23
|
+
export declare function handleResolve(args: ResolveArgs, ctx: HandlerContext): Promise<ToolResult>;
|
|
24
|
+
//# sourceMappingURL=resolve.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"resolve.d.ts","sourceRoot":"","sources":["../../src/handlers/resolve.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAIH,OAAO,KAAK,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAM7D,YAAY,EAAE,sBAAsB,EAAE,aAAa,EAAE,MAAM,6BAA6B,CAAC;AAEzF;;GAEG;AACH,UAAU,WAAW;IACnB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,QAAQ,GAAG,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,SAAS,CAAC;IAC7D,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED;;;;;GAKG;AACH,wBAAsB,aAAa,CAAC,IAAI,EAAE,WAAW,EAAE,GAAG,EAAE,cAAc,GAAG,OAAO,CAAC,UAAU,CAAC,CA8B/F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"services.d.ts","sourceRoot":"","sources":["../../src/handlers/services.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"services.d.ts","sourceRoot":"","sources":["../../src/handlers/services.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAQzE,wBAAsB,cAAc,CAClC,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,UAAU,EACjB,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CAWrB"}
|
package/dist/handlers/tasks.d.ts
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Tasks
|
|
2
|
+
* Tasks MCP handler.
|
|
3
3
|
*/
|
|
4
4
|
import type { HandlerContext, TaskArgs, ToolResult } from './types.js';
|
|
5
|
-
|
|
5
|
+
import { type ResolvableResourceType } from './resolve.js';
|
|
6
|
+
export declare function handleTasks(action: string, args: TaskArgs & {
|
|
7
|
+
query?: string;
|
|
8
|
+
type?: ResolvableResourceType;
|
|
9
|
+
}, ctx: HandlerContext): Promise<ToolResult>;
|
|
6
10
|
//# sourceMappingURL=tasks.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tasks.d.ts","sourceRoot":"","sources":["../../src/handlers/tasks.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"tasks.d.ts","sourceRoot":"","sources":["../../src/handlers/tasks.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,KAAK,EAAE,cAAc,EAAE,QAAQ,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAKvE,OAAO,EAAiB,KAAK,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAM1E,wBAAsB,WAAW,CAC/B,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,QAAQ,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,sBAAsB,CAAA;CAAE,EAClE,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CA0ErB"}
|
package/dist/handlers/time.d.ts
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Time entries
|
|
2
|
+
* Time entries MCP handler.
|
|
3
|
+
*
|
|
4
|
+
* Thin adapter that delegates business logic to core executors
|
|
5
|
+
* and handles MCP-specific concerns (hints, error formatting, JSON results).
|
|
3
6
|
*/
|
|
4
7
|
import type { CommonArgs, HandlerContext, ToolResult } from './types.js';
|
|
5
|
-
|
|
8
|
+
import { type ResolvableResourceType } from './resolve.js';
|
|
9
|
+
export declare function handleTime(action: string, args: CommonArgs & {
|
|
10
|
+
query?: string;
|
|
11
|
+
type?: ResolvableResourceType;
|
|
12
|
+
project_id?: string;
|
|
13
|
+
}, ctx: HandlerContext): Promise<ToolResult>;
|
|
6
14
|
//# sourceMappingURL=time.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"time.d.ts","sourceRoot":"","sources":["../../src/handlers/time.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"time.d.ts","sourceRoot":"","sources":["../../src/handlers/time.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AASH,OAAO,KAAK,EAAE,UAAU,EAAE,cAAc,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAKzE,OAAO,EAAiB,KAAK,sBAAsB,EAAE,MAAM,cAAc,CAAC;AAK1E,wBAAsB,UAAU,CAC9B,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,UAAU,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,sBAAsB,CAAC;IAAC,UAAU,CAAC,EAAE,MAAM,CAAA;CAAE,EACzF,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CA8FrB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timers.d.ts","sourceRoot":"","sources":["../../src/handlers/timers.ts"],"names":[],"mappings":"AAAA;;GAEG;
|
|
1
|
+
{"version":3,"file":"timers.d.ts","sourceRoot":"","sources":["../../src/handlers/timers.ts"],"names":[],"mappings":"AAAA;;GAEG;AAIH,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AASxE,wBAAsB,YAAY,CAChC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,SAAS,EACf,GAAG,EAAE,cAAc,GAClB,OAAO,CAAC,UAAU,CAAC,CAqCrB"}
|