CCM
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
pipeworx-io avatar

Arxiv

pipeworx-io/mcp-arxiv
4 toolsHTTPregistry active
Summary

Connects Claude to arXiv's preprint repository through Pipeworx's MCP gateway. No authentication required, which makes it dead simple to drop into any MCP client. The implementation uses streamable HTTP transport and includes an ask_pipeworx tool that lets you query in plain English instead of calling structured tools directly. Part of Pipeworx's larger gateway that aggregates 250+ data sources, but you can use just the arXiv endpoint if that's all you need. Useful when you're researching papers, need to pull citations, or want to keep Claude informed about recent academic work without manually copying abstracts.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →

Tools

Public tool metadata for what this MCP can expose to an agent.

4 tools
arxiv_searchSearch arXiv papers by query with category and sort filters. Returns paper metadata including title, authors, abstract, categories, and links.6 params

Search arXiv papers by query with category and sort filters. Returns paper metadata including title, authors, abstract, categories, and links.

Parameters* required
categorystring
Filter by arXiv category (e.g., "cs.CL", "math.AG"). Prepended as "AND cat:{category}" to the query. Use arxiv_list_categories to discover valid codes.
max_resultsnumber
Maximum results to return (1-50). Default 10. Each result includes title, authors, abstract, and metadata — keep low to manage context budget.default: 10
querystring
Search query. Supports field prefixes: ti: (title), au: (author), abs: (abstract), cat: (category), co: (comment), jr: (journal ref), all: (all fields). Boolean operators: AND, OR, ANDNOT. Examples...
sort_bystring
Sort criterion. Use "submitted" for newest papers, "relevance" for best query matches.one of relevance · submitted · updateddefault: relevance
sort_orderstring
Sort direction. "descending" returns newest/most relevant first.one of ascending · descendingdefault: descending
startnumber
Pagination offset. Use with max_results to page through results. E.g., start=10 with max_results=10 returns results 11-20.default: 0
arxiv_get_metadataGet full metadata for one or more arXiv papers by ID. Use when you have known IDs from citations, prior search results, or memory.1 params

Get full metadata for one or more arXiv papers by ID. Use when you have known IDs from citations, prior search results, or memory.

Parameters* required
paper_idsvalue
arXiv paper ID or array of up to 10 IDs. Format: "2401.12345" or "2401.12345v2" (with version). Also accepts legacy IDs like "hep-th/9901001".
arxiv_read_paperFetch the full text content of an arXiv paper from its HTML rendering. Tries native arXiv HTML first, falls back to ar5iv. Returns raw HTML for direct interpretation.2 params

Fetch the full text content of an arXiv paper from its HTML rendering. Tries native arXiv HTML first, falls back to ar5iv. Returns raw HTML for direct interpretation.

Parameters* required
max_charactersnumber
Maximum characters of paper body content to return. Defaults to 100,000. HTML head/boilerplate is stripped before counting. When truncated, a notice and total character count are included.default: 100000
paper_idstring
arXiv paper ID (e.g., "2401.12345" or "2401.12345v2").
arxiv_list_categoriesList arXiv category codes and names. Useful for discovering valid category filters for arxiv_search.1 params

List arXiv category codes and names. Useful for discovering valid category filters for arxiv_search.

Parameters* required
groupstring
Filter by top-level group (e.g., "cs", "math", "physics"). Returns all categories if omitted.one of cs · econ · eess · math · physics · q-bio

@pipeworx/arxiv

arXiv preprint server MCP — full-text search and paper lookup, no auth.

Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.

Tools

  • search_papers(query, max_results?, sort_by?, sort_order?) — text search; supports field prefixes au:, ti:, abs:, cat:, all:. Combine with AND, OR, ANDNOT.
  • get_paper(arxiv_id) — fetch one paper by ID (e.g., 2310.06825).

Data source

https://export.arxiv.org/api/query — public Atom-feed endpoint, no key required.

Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

{
  "mcpServers": {
    "arxiv": {
      "url": "https://gateway.pipeworx.io/arxiv/mcp"
    }
  }
}

What this endpoint actually serves

tools/list at https://gateway.pipeworx.io/arxiv/mcp returns the tools in the table above plus the shared Pipeworx meta-tools — ask_pipeworx, discover_tools, search_within, remember/recall and the rest of the gateway-wide set. So the tool count you see is larger than this table: a single-pack endpoint currently lists roughly 30 shared tools alongside the pack's own. The connection's initialize response states its exact scope, and is the authoritative answer for a given day.

This is deliberate, not multiplexing by accident. The meta-tools are what let a scoped connection answer a question this pack does not cover — via ask_pipeworx, which routes across the whole catalog — without you adding a second MCP server. There is currently no way to mount a pack endpoint without them; if the extra schemas cost you more context than the routing is worth, connect to the full gateway once rather than to several pack endpoints.

Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}

Both URLs reach the same gateway and the same 1476+ data sources. The only difference is which pack's tools are listed directly; ask_pipeworx reaches all of them from either one.

Using with ask_pipeworx

Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:

ask_pipeworx({ question: "your question about Arxiv data" })

The gateway picks the right tool and fills the arguments automatically.

More

  • Docs and guides
  • pipeworx.io

License

MIT

No MCP client? Call it over HTTP

curl -X POST https://gateway.pipeworx.io/v1/tools/arxiv_search_papers \
  -H 'Content-Type: application/json' \
  -d '{"query":"ti:transformer AND cat:cs.LG","max_results":20,"sort_by":"relevance"}'

No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/arxiv_search_papers. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
ego lite browserego lite browser
ego lite browser
Fastest browser for AI agents to run web automation tasks, always free.
Download Free life-time →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Agent, connect blockchain
Agent, connect blockchain
Connect your Claude agent to live crypto prices and trading routes via 1inch
Get the MCP →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeHealth MCP ServerCodeHealth MCP Server
CodeHealth MCP Server
Protect your code quality, stop the AI slop.
Try For Free →
Categories
Search & Web Crawling
Registryactive
TransportHTTP
UpdatedMay 11, 2026
View on GitHub

More from pipeworx-io

  • Asana
  • Ashby
  • Askdata Xk
  • Asub Ax
  • Attom
  • Aviation Weather
  • Aviationstack
  • Balldontlie
  • Bamboohr
  • Ban Fr
  • Bank Of Canada
  • Bcb Br
  • Bea Gov
  • Bhagavad Gita
  • Bioregistry
  • Biorxiv
  • Bis
  • Bitstamp
  • Blockchair
  • Blockstream Info
  • Bls
  • Bnm My
  • Boe Uk
  • Boi Il

Related Search & Web Crawling MCP Servers

View all →
pipeworx-io avatar
Catalogueoflife

io.github.pipeworx-io/catalogueoflife

Catalogue of Life — global taxonomic index of known species (~2.2M accepted names)
pipeworx-io avatar
Clinicaltables

io.github.pipeworx-io/clinicaltables

NIH Clinical Tables: ICD-10/9, RxTerms, LOINC, NPI, conditions search. Keyless.
pipeworx-io avatar
Commons Wikimedia

io.github.pipeworx-io/commons-wikimedia

Wikimedia Commons file/image/audio/video search via MediaWiki Action API
pipeworx-io avatar
Deezer

io.github.pipeworx-io/deezer

Deezer public music catalog (search/tracks/albums/artists/charts)
pipeworx-io avatar
Europepmc

io.github.pipeworx-io/europepmc

Europe PubMed Central — biomedical literature search and full text
pipeworx-io avatar
Frinkiac

io.github.pipeworx-io/frinkiac

Quote-based screencap search for Simpsons, Futurama, Rick and Morty