radar-papers-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| QWEN_MODEL | No | Model name to use with the local LLM. llama.cpp and LM Studio accept any name. | local-model |
| DUCKDB_PATH | No | Path to the local DuckDB database file. | ./data/papers.duckdb |
| TOPICOS_PATH | No | Path to the YAML file containing the research topics to monitor. | ./config/topicos.yaml |
| QWEN_ENDPOINT | No | Endpoint of the OpenAI-compatible local LLM. Examples: llama.cpp: http://127.0.0.1:8080/v1, Ollama: http://127.0.0.1:11434/v1, LM Studio: http://127.0.0.1:1234/v1 | http://127.0.0.1:8080/v1 |
| PUBMED_API_KEY | No | Optional NCBI API key to raise PubMed rate limits from 3 to 10 requests per second. | |
| SYNC_HORA_LOCAL | No | Local time (HH:MM) for the scheduled sync. | 04:10 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| buscar_papers_novosA | Papers novos do PubMed e do medRxiv sobre os tópicos monitorados. Consulta a base local, que é sincronizada de madrugada. Cada resultado traz a chave para usar em resumir_paper e o link original. Args: topico: filtra por um tópico configurado; vazio devolve todos. dias: tamanho da janela, em dias, a contar de hoje. |
| resumir_paperA | Resumo estruturado de um paper: problema, método, achado e relevância. O resumo vem do abstract, não do texto completo, e é gerado pelo LLM local. Fica cacheado: o mesmo paper não é resumido duas vezes. Papers sem abstract devolvem erro claro em vez de um resumo inventado. Args: paper_id: a chave devolvida por buscar_papers_novos (o DOI, em geral). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: one discovers new papers, the other summarizes a specific paper. There is no overlap or ambiguity about which tool to use.
Both tool names follow the same verb_noun pattern in Portuguese: buscar_papers_novos and resumir_paper. This is highly predictable and consistent.
With only two tools, the server feels minimal but not unreasonable for its narrow scope. It covers a simple search-and-summarize workflow, though it is borderline thin.
The core workflows are covered: discovering papers and summarizing them. A minor gap is the lack of a way to list configured topics used by the search filter, but the server's stated purpose is otherwise satisfied.