A modern, efficient document management system for the digital workplace
Features • Installation • Usage • API • Configuration • Contributing • License
Paperless MCP is an open-source document management system designed to streamline the handling of digital documents in enterprise environments. It provides a comprehensive solution for storing, organizing, searching, and processing documents, eliminating the need for physical paperwork and simplifying document workflows.
The system offers robust document processing capabilities, including OCR (Optical Character Recognition), metadata extraction, and automated document classification, all while maintaining strict security and access controls.
Document Storage & Organization
- Secure cloud or on-premises document storage
- Hierarchical folder structure
- Custom metadata and tagging
- Advanced search capabilities
Document Processing
- OCR for scanned documents
- Automated document classification
- Metadata extraction
- PDF processing and manipulation
Security & Compliance
- Role-based access control
- Audit logging for all document activities
- Encryption of sensitive data
- Compliance with industry standards (GDPR, HIPAA, etc.)
Integration & Extensibility
- RESTful API for third-party integration
- Webhook support for automation
- Customizable workflow engine
- Plugin architecture for extending functionality
User Experience
- Intuitive web-based user interface
- Mobile-responsive design
- Document preview and annotation
- Batch operations for efficient document handling
- Node.js (v16 or later)
- npm or yarn
- PostgreSQL (v13 or later)
- Docker (optional, for containerized deployment)
- Clone the repository:
git clone https://github.com/yourusername/paperless-mcp.git
cd paperless-mcp- Install dependencies:
npm install- Set up environment variables:
cp .env.example .env
# Edit .env with your configuration- Run database migrations:
npm run migrate- Start the development server:
npm run dev- Clone the repository:
git clone https://github.com/yourusername/paperless-mcp.git
cd paperless-mcp- Build and start the Docker containers:
docker-compose up -dThe application will be available at http://localhost:3000.
import { DocumentService } from 'paperless-mcp';
const documentService = new DocumentService();
const result = await documentService.uploadDocument({
file: fileBuffer,
metadata: {
title: 'Invoice #12345',
category: 'Finance',
tags: ['invoice', '2023', 'vendor-abc']
}
});const document = await documentService.getDocument(documentId);const searchResults = await documentService.searchDocuments({
query: 'invoice',
filters: {
category: 'Finance',
dateRange: {
from: '2023-01-01',
to: '2023-12-31'
}
},
page: 1,
limit: 20
});Paperless MCP also provides a command-line interface for administrative tasks:
# Display help
npx paperless-mcp --help
# Initialize the system
npx paperless-mcp init
# Import documents from a directory
npx paperless-mcp import --source /path/to/documents
# Run system diagnostics
npx paperless-mcp diagnosePaperless MCP exposes a RESTful API for integration with other systems. The API is available at /api/v1 and requires authentication via API keys or JWT tokens.
POST /api/v1/auth/login
Request body:
{
"username": "admin",
"password": "your-password"
}Response:
{
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...",
"expiresAt": "2023-12-31T23:59:59Z"
}POST /api/v1/documents
Request body:
{
"title": "Invoice #12345",
"content": "Base64 encoded file content...",
"metadata": {
"category": "Finance",
"tags": ["invoice", "2023"]
}
}GET /api/v1/documents/:id
GET /api/v1/documents/search?q=invoice&category=Finance&from=2023-01-01&to=2023-12-31&page=1&limit=20
For a complete API reference, see the API Documentation.
Paperless MCP can be configured through environment variables, configuration files, or the smithery.yaml file.
PORT: The port the server will listen on (default: 3000)DATABASE_URL: PostgreSQL connection stringSTORAGE_TYPE: Storage backend ('local', 's3', 'azure', etc.)STORAGE_PATH: Local storage path (if STORAGE_TYPE=local)LOG_LEVEL: Logging level ('debug', 'info', 'warn', 'error')JWT_SECRET: Secret for JWT token generationOCR_ENGINE: OCR engine to use ('tesseract', 'azure', etc.)
For more advanced configuration, create a config.js or config.json file in the project root. Example:
{
"server": {
"port": 3000,
"host": "0.0.0.0",
"cors": {
"enabled": true,
"origins": ["https://example.com"]
}
},
"database": {
"url": "postgresql://user:password@localhost:5432/paperless",
"pool": {
"min": 2,
"max": 10
}
},
"storage": {
"type": "s3",
"config": {
"bucket": "paperless-documents",
"region": "us-west-2"
}
}
}We welcome contributions to Paperless MCP! Please feel free to submit issues, feature requests, and pull requests.
- Fork the repository
- Clone your fork:
git clone https://github.com/yourusername/paperless-mcp.git - Create a feature branch:
git checkout -b feature/my-feature - Make your changes
- Run tests:
npm test - Commit your changes:
git commit -m 'Add my feature' - Push to the branch:
git push origin feature/my-feature - Submit a pull request
- We follow the TypeScript Coding Guidelines
- All code should be properly typed
- Unit tests are required for new features
- Documentation should be updated with any changes
- API documentation is generated using TypeDoc
- Update the README.md if you add or change features
- Add examples for new functionality
This project is licensed under the MIT License - see the LICENSE file for details.
- Thanks to all contributors who have helped shape this project
- Special thanks to the open-source community for the tools and libraries that make this project possible
Made with ❤️ by the Paperless MCP Team