npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@cartographai/atlas-docs-mcp

v0.2.0

Published

MCP server for getting documentation for libraries and frameworks

Readme

Atlas Docs MCP Server

NPM Version

A Model Context Protocol (MCP) server that provides AI assistants with documentation for libraries and frameworks.

[!WARNING] Atlas Docs is currently in beta. Not everything might work perfectly, but we're actively improving the service. Your patience and feedback are greatly appreciated!

What Does This Server Do?

LLMs are great at generating general code, but suck at correctly using less popular or newly released libraries. This isn't surprising, since the models have not been trained comprehensively on code using these libraries.

Atlas Docs MCP server:

  • Provides technical documentation for libraries and frameworks
  • Processes the official docs into a clean markdown version for LLM consumption
  • Is easy to set up with Cursor, Cline, Windsurf and any other MCP-compatible LLM clients

Claude 3.5 Sonnet on its own:

elevenlabs-without-atlas-annotated

Claude 3.5 Sonnet with Atlas Docs MCP:

elevenlabs-with-atlas-annotated

📦 Installation

Atlas Docs MCP server works with any MCP client that supports the stdio protocol, including:

  • Cursor
  • Cline
  • Windsurf
  • Claude Desktop

Add the following to your MCP client configuration file:

{
  "mcpServers": {
    "atlas-docs": {
      "command": "npx",
      "args": ["-y", "@cartographai/atlas-docs-mcp"]
    }
  }
}

That's it! You may need to restart the app (for Claude Desktop) for the server to be recognised.

Tip: Prompt your model to check the docs eg. "Use the tools to check the documentation for Astro to ensure that you use the library correctly."

📒 Available Libraries

  • Astro (source: https://docs.astro.build/en/getting-started)
  • ast-grep (source: https://ast-grep.github.io/llms.txt)
  • Bun (source: https://bun.sh/llms.txt)
  • CrewAI (source: https://docs.crewai.com/llms.txt)
  • Drizzle (source: https://orm.drizzle.team/llms.txt)
  • ElevenLabs (source: https://elevenlabs.io/docs/llms.txt)
  • Fireworks (source: https://docs.fireworks.ai/llms.txt)
  • Hono (source: https://hono.dev/llms.txt)
  • Langgraph-js (source: https://langchain-ai.github.io/langgraphjs/llms.txt)
  • Langgraph-py (source: https://langchain-ai.github.io/langgraph/llms.txt)
  • Mastra (source: https://mastra.ai/llms.txt)
  • ModelContextProtocol (source: https://modelcontextprotocol.io/llms.txt)
  • Pglite (source: https://pglite.dev/docs/about)
  • Prisma (source: https://www.prisma.io/docs/llms.txt)
  • Resend (source: https://resend.com/docs/llms.txt)
  • Stripe (source: https://docs.stripe.com/llms.txt)
  • Svelte (source: https://svelte.dev/docs/svelte/overview)
  • Trigger.dev (source: https://trigger.dev/docs/llms.txt)
  • X (source: https://docs.x.com/llms.txt)
  • Zapier (source: https://docs.zapier.com/llms.txt)

Want docs for another library not in this list? Please open an issue in this repo, we'll try to process and add it!

🔨 Available Tools

  1. list_docs: List all available documentation sets
  2. get_docs_index: Retrieves a condensed, LLM-friendly index of a documentation set
  3. get_docs_full: Retrieves a complete documentation set in a single consolidated file
  4. search_docs: Search a documentation set by keywords
  5. get_docs_page: Retrieves a specific page of a documentation set

💭 How It Works

Atlas Docs processes tech libraries' documentation sites into clean, markdown versions. This MCP server provides the docs as MCP tools, calling Atlas Docs APIs for the data.

Support & Feedback

Please open an issue in this repo to request docs for a library, or to report a bug.

If you have any questions, feedback, or just want to say hi, we'd love to hear from you. You can find us on Cartograph's Discord comunity for real-time support, or email us at [email protected]