Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": "0.3",
"name": "nutrient-dws-mcp-server",
"display_name": "Nutrient DWS",
"version": "0.0.5",
"version": "0.0.6",
"description": "Process, sign, redact, and transform documents from Claude Desktop using Nutrient.",
"long_description": "A local Claude Desktop extension for document processing with Nutrient. It runs as a stdio MCP server, reads files from a user-selected sandbox directory, opens a browser for OAuth on the first request that uses the Nutrient API, and writes processed results back to local output paths.",
"author": {
Expand All @@ -16,6 +16,7 @@
"homepage": "https://www.nutrient.io/mcp-server-pdf-automation-llm/",
"documentation": "https://www.nutrient.io/guides/dws-processor/getting-started/mcp-server/",
"support": "https://github.com/PSPDFKit/nutrient-dws-mcp-server/issues",
"icon": "icon.png",
"keywords": [
"mcp",
"pdf",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nutrient-sdk/dws-mcp-server",
"version": "0.0.5",
"version": "0.0.6",
"description": "MCP server for Nutrient DWS Processor API",
"license": "MIT",
"author": "Nutrient (https://www.nutrient.io)",
Expand Down
1 change: 1 addition & 0 deletions scripts/build-mcpb.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ try {
await cp(path.join(rootDir, 'README.md'), path.join(stageDir, 'README.md'))
await cp(path.join(rootDir, 'LICENSE'), path.join(stageDir, 'LICENSE'))
await cp(path.join(rootDir, 'manifest.json'), path.join(stageDir, 'manifest.json'))
await cp(path.join(rootDir, 'icon.png'), path.join(stageDir, 'icon.png'))

await run('npm', ['install', '--omit=dev', '--ignore-scripts', '--no-package-lock'], stageDir)
await rm(path.join(stageDir, 'node_modules', '.package-lock.json'), { force: true })
Expand Down
Loading