We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Freya-Lee-Zou/mcp-arxiv'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
prompts.py•422 B
"""Prompt definitions for arXiv MCP server."""
from mcp.types import Prompt, PromptArgument
# Define available prompts
PROMPTS = {
"deep-paper-analysis": Prompt(
name="deep-paper-analysis",
description="Analyze a specific paper in detail",
arguments=[
PromptArgument(
name="paper_id", description="arXiv paper ID", required=True
),
],
),
}