literateMCP
Sistema universal de gestión de fuentes
Un sistema flexible para gestionar diversos tipos de fuentes (artículos, libros, páginas web, etc.) e integrarlos con gráficos de conocimiento.
Características
Características principales
Identificación de fuente universal con sistema UUID interno
Soporte para múltiples tipos de fuentes (artículos, páginas web, libros, vídeos, blogs)
Compatibilidad con múltiples identificadores por fuente (arxiv, DOI, Semantic Scholar, ISBN, URL)
Toma de notas estructurada con títulos y contenido
Seguimiento de estado (no leído, leído, completado, archivado)
Integración de entidades
Vincular fuentes a entidades del gráfico de conocimiento
Realizar un seguimiento de las relaciones entre fuentes y entidades
Tipos de relación flexibles (discute, introduce, extiende, etc.)
Integración con el gráfico de memoria
Related MCP server: Private Journal MCP Server
Prerrequisitos
Este sistema se integra con el servidor de memoria MCP para el almacenamiento persistente de gráficos de conocimiento.
Inicio rápido
Crea una nueva base de datos SQLite con nuestro esquema:
# Create a new database
sqlite3 sources.db < create_sources_db.sqlInstalar el servidor de administración de origen:
# Install for Claude Desktop with your database path
fastmcp install source-manager-server.py --name "Source Manager" -e SQLITE_DB_PATH=/path/to/sources.dbEsquema
Tablas básicas
-- Sources table
CREATE TABLE sources (
id UUID PRIMARY KEY,
title TEXT NOT NULL,
type TEXT CHECK(type IN ('paper', 'webpage', 'book', 'video', 'blog')) NOT NULL,
identifiers JSONB NOT NULL,
status TEXT CHECK(status IN ('unread', 'reading', 'completed', 'archived')) DEFAULT 'unread'
);
-- Source notes
CREATE TABLE source_notes (
source_id UUID REFERENCES sources(id),
note_title TEXT NOT NULL,
content TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (source_id, note_title)
);
-- Entity links
CREATE TABLE source_entity_links (
source_id UUID REFERENCES sources(id),
entity_name TEXT,
relation_type TEXT CHECK(relation_type IN ('discusses', 'introduces', 'extends', 'evaluates', 'applies', 'critiques')),
notes TEXT,
PRIMARY KEY (source_id, entity_name)
);Ejemplos de uso
1. Gestión de fuentes
Agregar un artículo con múltiples identificadores:
add_source(
title="Attention Is All You Need",
type="paper",
identifier_type="arxiv",
identifier_value="1706.03762",
initial_note={
"title": "Initial thoughts",
"content": "Groundbreaking paper introducing transformers..."
}
)
# Add another identifier to the same paper
add_identifier(
title="Attention Is All You Need",
type="paper",
current_identifier_type="arxiv",
current_identifier_value="1706.03762",
new_identifier_type="semantic_scholar",
new_identifier_value="204e3073870fae3d05bcbc2f6a8e263d9b72e776"
)Agregar una página web:
add_source(
title="Understanding Transformers",
type="webpage",
identifier_type="url",
identifier_value="https://example.com/transformers",
)2. Toma de notas
Agregar notas a una fuente:
add_note(
title="Attention Is All You Need",
type="paper",
identifier_type="arxiv",
identifier_value="1706.03762",
note_title="Implementation details",
note_content="The paper describes the architecture..."
)3. Vinculación de entidades
Vincular la fuente a las entidades:
link_to_entity(
title="Attention Is All You Need",
type="paper",
identifier_type="arxiv",
identifier_value="1706.03762",
entity_name="transformer",
relation_type="introduces",
notes="First paper to introduce the transformer architecture"
)Fuentes de consulta por entidad:
get_entity_sources(
entity_name="transformer",
type_filter="paper",
relation_filter="discusses"
)Mejores prácticas
Gestión de fuentes
Utilice títulos consistentes en todas las referencias
Proporcione tantos identificadores como estén disponibles
Mantenga las notas estructuradas con títulos claros
Utilice tipos de fuentes apropiados
Vinculación de entidades
Sea específico con los tipos de relación
Agregar notas contextuales a las relaciones
Verificar los nombres de las entidades contra el gráfico de memoria
Mantener las relaciones entre entidades enfocadas
Detalles técnicos
Identificación de la fuente
Sistema UUID interno para una referencia consistente
Múltiples identificadores externos por fuente
Tipos de identificadores flexibles (arxiv, doi, url, etc.)
Coincidencia difusa basada en título y tipo
Organización de datos
Notas estructuradas con títulos
Categorización clara del tipo de fuente
Seguimiento de relaciones entre entidades
Gestión de estado
Contribuyendo
Bifurcar el repositorio
Crear una rama de características
Agregar pruebas para nuevas funciones
Enviar una solicitud de extracción
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA simple server that integrates with Claude to allow querying and manipulating Notion pages and databases through natural language prompts.837MIT
- AlicenseNot gradedqualityDmaintenanceA project-scoped private journaling and semantic search server for Claude, using local AI embeddings to capture technical insights, user context, and work-in-progress notes.GPL 3.0
- AlicenseNot gradedqualityBmaintenanceLocal-first MCP server for indexing and searching research materials (papers, notes, logs, READMEs) using SQLite FTS, with tools for memory management and evidence retrieval.MIT
- AlicenseNot gradedqualityBmaintenanceA focused local-paper RAG MCP server that imports PDFs, indexes them into SQLite and ChromaDB, and retrieves section-aware paper chunks for use with Claude Code, Codex, or any MCP client.MIT
Related MCP Connectors
Serve a folder of Markdown notes as an MCP server: hybrid search, reading, and sourced answers.
Search arXiv/Semantic Scholar/OpenAlex + medical evidence (PubMed/Europe PMC) + LaTeX/PDF tools.
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zongmin-yu/sqlite-literature-management-fastmcp-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server