Skip to main content
Glama
emi-dm

ArxivSearcher MCP Server

by emi-dm

get_arxiv_categories

Retrieve and explore a comprehensive list of ArXiv categories with descriptions to enhance research filtering and paper discovery within the ArxivSearcher MCP Server.

Instructions

Get a list of available ArXiv categories and their descriptions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler function for the 'get_arxiv_categories' tool. It is decorated with @mcp.resource to register it as 'data://arxiv_categories' and loads the arXiv categories from a local JSON file, returning them as a string.
    @mcp.resource("data://arxiv_categories") def get_arxiv_categories() -> str: """Provides the list of Arxiv categories in JSON format.""" with open("arxiv_categories.json", "r") as f: categories = json.load(f) return categories
  • Identical implementation of the 'get_arxiv_categories' handler in the remote version of the MCP server, loading categories from JSON file.
    @mcp.resource("data://arxiv_categories") def get_arxiv_categories() -> str: """Provides the list of Arxiv categories in JSON format.""" with open("arxiv_categories.json", "r") as f: categories = json.load(f) return categories

Other Tools

Related Tools

Latest Blog Posts

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/emi-dm/Arxiv-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server