add mcp server support

This commit is contained in:
Nick Sweeting
2025-12-25 01:50:42 -08:00
parent 866f993f26
commit 28e6c5bb65
6 changed files with 561 additions and 1 deletions

9
archivebox/mcp/apps.py Normal file
View File

@@ -0,0 +1,9 @@
__package__ = 'archivebox.mcp'
from django.apps import AppConfig
class MCPConfig(AppConfig):
name = 'mcp'
verbose_name = 'Model Context Protocol Server'
default_auto_field = 'django.db.models.BigAutoField'