@agent2pdf/mcp-server 1.0.0 → 1.0.2
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 +18 -0
- package/dist/index.js +11 -74
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,6 +29,8 @@ npm install -g @agent2pdf/mcp-server
|
|
|
29
29
|
|
|
30
30
|
## Configuration
|
|
31
31
|
|
|
32
|
+
**Note:** The server connects to the **production** API (`https://api.agent2pdf.com/api/v1`) by default. To use the dev environment, set the `AGENT2PDF_API_BASE` environment variable.
|
|
33
|
+
|
|
32
34
|
### Claude Desktop
|
|
33
35
|
|
|
34
36
|
Add to your Claude Desktop config file (`~/Library/Application Support/Claude/claude_desktop_config.json` on macOS):
|
|
@@ -47,6 +49,22 @@ Add to your Claude Desktop config file (`~/Library/Application Support/Claude/cl
|
|
|
47
49
|
}
|
|
48
50
|
```
|
|
49
51
|
|
|
52
|
+
**For dev environment:**
|
|
53
|
+
```json
|
|
54
|
+
{
|
|
55
|
+
"mcpServers": {
|
|
56
|
+
"agent2pdf": {
|
|
57
|
+
"command": "npx",
|
|
58
|
+
"args": ["@agent2pdf/mcp-server"],
|
|
59
|
+
"env": {
|
|
60
|
+
"AGENT2PDF_API_KEY": "your-dev-api-key",
|
|
61
|
+
"AGENT2PDF_API_BASE": "https://agent2pdf-api-ue3hnvqp6q-de.a.run.app/api/v1"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
```
|
|
67
|
+
|
|
50
68
|
Or if installed globally:
|
|
51
69
|
|
|
52
70
|
```json
|