Skip to content

Commit a83a046

Browse files
authored
Add extension icon (#30)
1 parent 7f24f8b commit a83a046

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

icon.png

13.1 KB
Loading

manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": "0.3",
33
"name": "nutrient-dws-mcp-server",
44
"display_name": "Nutrient DWS",
5-
"version": "0.0.5",
5+
"version": "0.0.6",
66
"description": "Process, sign, redact, and transform documents from Claude Desktop using Nutrient.",
77
"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.",
88
"author": {
@@ -16,6 +16,7 @@
1616
"homepage": "https://www.nutrient.io/mcp-server-pdf-automation-llm/",
1717
"documentation": "https://www.nutrient.io/guides/dws-processor/getting-started/mcp-server/",
1818
"support": "https://github.com/PSPDFKit/nutrient-dws-mcp-server/issues",
19+
"icon": "icon.png",
1920
"keywords": [
2021
"mcp",
2122
"pdf",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nutrient-sdk/dws-mcp-server",
3-
"version": "0.0.5",
3+
"version": "0.0.6",
44
"description": "MCP server for Nutrient DWS Processor API",
55
"license": "MIT",
66
"author": "Nutrient (https://www.nutrient.io)",

scripts/build-mcpb.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ try {
5656
await cp(path.join(rootDir, 'README.md'), path.join(stageDir, 'README.md'))
5757
await cp(path.join(rootDir, 'LICENSE'), path.join(stageDir, 'LICENSE'))
5858
await cp(path.join(rootDir, 'manifest.json'), path.join(stageDir, 'manifest.json'))
59+
await cp(path.join(rootDir, 'icon.png'), path.join(stageDir, 'icon.png'))
5960

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

0 commit comments

Comments
 (0)