@plaud-ai/mcp 0.1.31 → 0.1.32
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/dist/index.js +1 -1
- package/package.json +11 -10
- package/plugin.json +1 -1
package/dist/index.js
CHANGED
|
@@ -30617,7 +30617,7 @@ var TokenStore = class {
|
|
|
30617
30617
|
};
|
|
30618
30618
|
|
|
30619
30619
|
// ../shared/dist/oauth.js
|
|
30620
|
-
var DEFAULT_AUTHORIZATION_URL = "https://
|
|
30620
|
+
var DEFAULT_AUTHORIZATION_URL = "https://web.plaud.ai/platform/oauth";
|
|
30621
30621
|
var DEFAULT_TOKEN_URL = "https://platform.plaud.ai/developer/api/oauth/third-party/access-token";
|
|
30622
30622
|
var DEFAULT_REFRESH_URL = "https://platform.plaud.ai/developer/api/oauth/third-party/access-token/refresh";
|
|
30623
30623
|
function generateCodeVerifier() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@plaud-ai/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.32",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -12,20 +12,21 @@
|
|
|
12
12
|
".mcp.json",
|
|
13
13
|
"skills"
|
|
14
14
|
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"version:show": "node -p \"require('./package.json').version\"",
|
|
17
|
+
"build": "tsup",
|
|
18
|
+
"dev": "tsup --watch",
|
|
19
|
+
"clean": "rm -rf dist",
|
|
20
|
+
"prepublishOnly": "node -e \"const fs=require('fs'),v=require('./package.json').version,p=JSON.parse(fs.readFileSync('./plugin.json','utf8'));p.version=v;fs.writeFileSync('./plugin.json',JSON.stringify(p,null,2)+'\\n');\""
|
|
21
|
+
},
|
|
15
22
|
"dependencies": {
|
|
16
23
|
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
17
24
|
"open": "^10.2.0",
|
|
18
25
|
"zod": "^4.3.6"
|
|
19
26
|
},
|
|
20
27
|
"devDependencies": {
|
|
28
|
+
"@plaud-ai/shared": "workspace:*",
|
|
21
29
|
"@types/node": "^25.5.0",
|
|
22
|
-
"typescript": "^5.7.0"
|
|
23
|
-
"@plaud-ai/shared": "0.1.0"
|
|
24
|
-
},
|
|
25
|
-
"scripts": {
|
|
26
|
-
"version:show": "node -p \"require('./package.json').version\"",
|
|
27
|
-
"build": "tsup",
|
|
28
|
-
"dev": "tsup --watch",
|
|
29
|
-
"clean": "rm -rf dist"
|
|
30
|
+
"typescript": "^5.7.0"
|
|
30
31
|
}
|
|
31
|
-
}
|
|
32
|
+
}
|