Skip to main content
Glama
renyumeng1

mcp-scholar

by renyumeng1

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

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

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
scholar_searchB
搜索谷歌学术并返回论文摘要

Args:
    keywords: 搜索关键词
    count: 返回结果数量,默认为5
    fuzzy_search: 是否使用模糊搜索,默认为False
    sort_by: 排序方式,可选值:
        - "relevance": 按相关性排序(默认)
        - "citations": 按引用量排序
        - "date": 按发表日期排序(新到旧)
        - "title": 按标题字母顺序排序
    year_start: 开始年份,可选
    year_end: 结束年份,可选

Returns:
    Dict: 包含论文列表的字典
adaptive_searchA
自适应搜索谷歌学术,先尝试精确搜索,如果结果太少则自动切换到模糊搜索

Args:
    keywords: 搜索关键词
    count: 返回结果数量,默认为5
    min_results: 最少需要返回的结果数量,少于此数量会触发模糊搜索,默认为3
    sort_by: 排序方式,可选值:
        - "relevance": 按相关性排序(默认)
        - "citations": 按引用量排序
        - "date": 按发表日期排序(新到旧)
        - "title": 按标题字母顺序排序
    year_start: 开始年份,可选
    year_end: 结束年份,可选

Returns:
    Dict: 包含论文列表和搜索模式的字典
paper_detailC
获取论文详细信息

Args:
    paper_id: 论文ID

Returns:
    Dict: 论文详细信息
paper_referencesA
获取引用指定论文的文献列表

Args:
    paper_id: 论文ID
    count: 返回结果数量,默认为5
    sort_by: 排序方式,可选值:
        - "relevance": 按相关性排序(默认)
        - "citations": 按引用量排序
        - "date": 按发表日期排序(新到旧)
        - "title": 按标题字母顺序排序

Returns:
    Dict: 引用论文列表
profile_papersB
获取学者的论文

Args:
    profile_url: 谷歌学术个人主页URL
    count: 返回结果数量,默认为5
    sort_by: 排序方式,可选值:
        - "relevance": 按相关性排序(默认)
        - "citations": 按引用量排序
        - "date": 按发表日期排序(新到旧)
        - "title": 按标题字母顺序排序

Returns:
    Dict: 论文列表
summarize_papersB
搜索并总结特定主题的论文

Args:
    topic: 研究主题
    count: 返回结果数量,默认为5
    sort_by: 排序方式,可选值:
        - "relevance": 按相关性排序(默认)
        - "citations": 按引用量排序
        - "date": 按发表日期排序(新到旧)
        - "title": 按标题字母顺序排序
    year_start: 开始年份,可选
    year_end: 结束年份,可选

Returns:
    str: 论文总结的Markdown格式文本
health_checkB
健康检查端点,用于验证服务是否正常运行

Returns:
    str: 服务状态信息

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.1/5.0

Scored across 7 tools

Disambiguation2/5

There is significant overlap between adaptive_search and scholar_search, both performing Google Scholar searches with similar parameters, which creates ambiguity. Additionally, summarize_papers appears to combine searching and summarization, potentially overlapping with the search tools, though its summarization aspect provides some distinction.

Naming Consistency4/5

Most tools follow a clear noun_verb or verb_noun pattern (e.g., adaptive_search, paper_detail, summarize_papers), with consistent snake_case throughout. The only minor deviation is health_check, which fits the pattern but stands out as a utility tool rather than a core scholarly function.

Tool Count4/5

With 7 tools, the count is reasonable for a scholarly search server, covering key operations like searching, retrieving details, and summarizing. However, the overlap between some tools suggests the set could be streamlined without losing functionality, making it slightly over-scoped.

Completeness4/5

The toolset covers core scholarly functions well, including searching, retrieving paper details, references, and scholar profiles, with summarization as an advanced feature. A minor gap is the lack of tools for managing saved papers or citations, but the existing tools support most common workflows without dead ends.

Maintenance

ActivityInactive
ResponsivenessNo issues