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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@appium/mcp-documentation

v1.0.4

Published

Appium MCP documentation query tools and indexed documentation assets

Readme

@appium/mcp-documentation

Appium MCP documentation query tools and indexed documentation assets.

This package provides an Appium documentation plugin for MCP servers. It exposes tools that can answer Appium documentation questions and return ordered setup or troubleshooting guidance from the vendored Appium skills content.

Tools

  • appium_documentation_query: queries indexed Appium documentation with RAG.
  • appium_skills: returns ordered Appium setup or troubleshooting skills for Android and iOS local environments.

Use With appium-mcp

Install this package alongside appium-mcp in the server project that starts your MCP server.

npm install appium-mcp
npm install @appium/mcp-documentation

When developing against a local checkout, build this package first and install it by path from the appium-mcp server project:

cd /path/to/appium-mcp-documentation
npm install
npm run build

cd /path/to/your-appium-mcp-server
npm install /path/to/appium-mcp-documentation

Register the documentation plugin when creating the Appium MCP server:

import { createAppiumMcpServer } from 'appium-mcp/core';
import { AppiumDocumentation } from '@appium/mcp-documentation';

const server = createAppiumMcpServer({
  plugins: [new AppiumDocumentation()],
});

await server.start({
  transportType: 'stdio',
});

For HTTP stream transport:

await server.start({
  transportType: 'httpStream',
  httpStream: {
    endpoint: '/sse',
    port: 8080,
  },
});

Once registered, the Appium MCP server exposes the normal Appium automation tools plus appium_documentation_query and appium_skills.

Note that the default appium-mcp server enables the documentation plugin if available, so you may not need to explicitly register it.

Direct API

You can also use the documentation query API directly:

import {
  answerAppiumQuery,
  initializeAppiumDocumentation,
} from '@appium/mcp-documentation';

await initializeAppiumDocumentation();

const result = await answerAppiumQuery({
  query: 'How do I configure UiAutomator2 capabilities?',
});

console.log(result.answer);

Development

Install dependencies:

npm install

Build the package:

npm run build

Run tests and lint:

npm test
npm run lint

Rebuild the documentation index:

npm run build
npm run index-docs

Query the built index from the command line:

npm run query-docs -- "How do I start an Appium session?"

Dependency Notes

The runtime dependencies are the packages used by the shipped tools and RAG implementation. fastmcp is a development dependency here because this package only imports its types.