@naparnik/mcp 0.1.0 → 0.10.11
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/CHANGELOG.md +1359 -0
- package/LICENSE.md +8 -1
- package/README.md +279 -23
- package/THIRD-PARTY.md +59 -0
- package/dist/chunk-MBUPRPJQ.js +21484 -0
- package/dist/cli.d.ts +25 -0
- package/dist/cli.js +466 -15
- package/dist/index.d.ts +1490 -16
- package/dist/index.js +1 -1
- package/package.json +15 -11
- package/dist/chunk-T6UWKM37.js +0 -4989
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { NaparnikApiClient, NaparnikAuthError, NaparnikClientError, NaparnikConfigError, NaparnikError, NaparnikInsufficientBalanceError, NaparnikScopeError, NaparnikServerError, NaparnikTimeoutError,
|
|
1
|
+
export { DEFAULT_HOME, DeliveryError, Engine, ForeignBlockError, INSIDE_PYTHON, INSTALL_STEPS, KEEP_COPIES, KEEP_VERSIONS, LONG_STEPS, MANIFEST_TIMEOUT_MS, MANIFEST_URL, MARKER, MIN_ENGINE, NaparnikApiClient, NaparnikAuthError, NaparnikClientError, NaparnikConfigError, NaparnikError, NaparnikInsufficientBalanceError, NaparnikScopeError, NaparnikServerError, NaparnikTimeoutError, PAUSE_HOURS, SERVER_NAME, SOURCES_FILE, START_SEC, TOOL_SEC, USER_AGENT, VERSION, buildAll, buildBlock, buildResources, compare, configPath, decide, defineTool, deploy, downloadFile, fetchManifest, fileOrRefusal, findBlock, fromNpxCache, inside, install, installPayload, installPython, jsonSchemaOf, keyInTable, lastLine, loadConfig, markChecked2 as markChecked, markCurrent, parseEngineManifest, parseFailure, path, platformKey, previousVersion, probe, pythonSource, refusalFor, remove, rollback, tarEntries, tidyOld, timeToCheck2 as timeToCheck, unpackArchive, withArgs } from './chunk-MBUPRPJQ.js';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naparnik/mcp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP-сервер Напарника:
|
|
3
|
+
"version": "0.10.11",
|
|
4
|
+
"description": "MCP-сервер Напарника: монтаж вертикального видео на машине пользователя — паузы, субтитры, герой на новом фоне, звук. Видео никуда не уезжает.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"private": false,
|
|
7
7
|
"type": "module",
|
|
@@ -24,19 +24,21 @@
|
|
|
24
24
|
},
|
|
25
25
|
"repository": {
|
|
26
26
|
"type": "git",
|
|
27
|
-
"url": "https://gitlab.com/shamysev/ai-
|
|
28
|
-
"directory": "
|
|
27
|
+
"url": "https://gitlab.com/shamysev/ai-montage.git",
|
|
28
|
+
"directory": "client/mcp"
|
|
29
29
|
},
|
|
30
30
|
"homepage": "https://naparnik.ai",
|
|
31
31
|
"scripts": {
|
|
32
32
|
"build": "tsup",
|
|
33
33
|
"test": "vitest run",
|
|
34
|
-
"typecheck": "tsc --noEmit",
|
|
35
|
-
"
|
|
34
|
+
"typecheck": "tsc --noEmit -p tsconfig.check.json",
|
|
35
|
+
"widgets": "tsx watch --clear-screen=false --include 'widget-lab/*.html' --include 'widget-lab/*.js' widget-lab/server.ts"
|
|
36
36
|
},
|
|
37
37
|
"files": [
|
|
38
38
|
"dist",
|
|
39
39
|
"README.md",
|
|
40
|
+
"CHANGELOG.md",
|
|
41
|
+
"THIRD-PARTY.md",
|
|
40
42
|
"LICENSE.md"
|
|
41
43
|
],
|
|
42
44
|
"keywords": [
|
|
@@ -44,15 +46,17 @@
|
|
|
44
46
|
"model-context-protocol",
|
|
45
47
|
"claude",
|
|
46
48
|
"naparnik",
|
|
47
|
-
"reels"
|
|
49
|
+
"reels",
|
|
50
|
+
"video",
|
|
51
|
+
"montage",
|
|
52
|
+
"subtitles"
|
|
48
53
|
],
|
|
49
|
-
"dependencies": {},
|
|
50
54
|
"devDependencies": {
|
|
51
|
-
"@naparnik/api-contracts": "file:../api-contracts",
|
|
52
|
-
"@naparnik/super-agent-core": "file:../../super-agent-core",
|
|
53
55
|
"@types/node": "^22.0.0",
|
|
54
56
|
"tsup": "^8.5.1",
|
|
57
|
+
"tsx": "^4.23.12",
|
|
55
58
|
"typescript": "^5.4.0",
|
|
56
|
-
"vitest": "^3.2.4"
|
|
59
|
+
"vitest": "^3.2.4",
|
|
60
|
+
"zod": "^3.25.76"
|
|
57
61
|
}
|
|
58
62
|
}
|