Removed paperless-mcp

This commit is contained in:
Rishi Ghan
2026-01-01 22:22:39 -05:00
parent ab7d8f5501
commit e2345cedcc
2 changed files with 31 additions and 12 deletions

View File

@@ -0,0 +1,31 @@
### VSCodium + Roo Code + Paperless
To get a LLM interface to Paperless doc repository, use this code in the Roo Code MCP server configuration:
```json
{
"mcpServers": {
"paperless": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-e",
"PAPERLESS_URL=https://paperless.rishighan.com",
"-e",
"PAPERLESS_API_KEY=a5d51c852459ac8b7048681009e9e98c25647cf8",
"node:20-slim",
"npx",
"-y",
"@baruchiro/paperless-mcp"
],
"alwaysAllow": [
"update_document"
]
}
}
}
```
Then, you can ask/command Roo to do things to your docs.

View File

@@ -30,18 +30,6 @@ services:
- /mnt/user/data/paperless/export:/usr/src/paperless/export
- /mnt/user/data/paperless/consume:/usr/src/paperless/consume
paperless-mcp:
image: cbinckly/paperless-mcp:latest
container_name: paperless-mcp
restart: unless-stopped
depends_on:
- paperless
ports:
- "8778:8000"
environment:
- PAPERLESS_URL=http://paperless:8000
- API_KEY=a5d51c852459ac8b7048681009e9e98c25647cf8
paperless-db:
image: postgres:16
container_name: paperless-db