31 lines
663 B
Markdown
31 lines
663 B
Markdown
### 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. |