mobile-docs-mcp
Provides access to live Algolia SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Provides access to live Auth0 SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Provides access to live AWS Amplify SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Provides access to live Clerk SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Provides access to live Cloudinary SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Enables searching for CocoaPods packages and retrieving package metadata such as latest version, license, and repository.
Enables searching for packages on pub.dev (Dart/Flutter) and retrieving package metadata such as latest version, license, and repository.
Provides access to live Fastlane SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Provides access to live Firebase SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Allows fetching open issues from any GitHub repository with optional label filtering.
Provides access to live Google Maps SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Provides access to live Mapbox SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Provides access to live Meta Audience Network SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Provides access to live Mixpanel SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Enables searching for npm packages and retrieving package metadata such as latest version, license, and repository.
Provides access to live OpenAI SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Provides access to live PostHog SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Enables searching for Python packages on PyPI and retrieving package metadata such as latest version, license, and repository.
Provides access to live Sentry SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Provides access to live Supabase SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Provides access to live Unity Ads SDK documentation, including full-text search, package registry lookup, and open GitHub issues.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mobile-docs-mcpshow me the latest version of Firebase iOS SDK"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Why?
LLMs often have outdated knowledge about mobile SDKs. mobile-docs-mcp solves this by:
Fetching live documentation from official sources and converting it to clean markdown
Querying package registries for the latest versions in real-time
Pulling open GitHub issues so the LLM knows about current bugs and limitations
Caching everything locally (24h TTL) for fast, offline-friendly responses
Related MCP server: Library Docs MCP Server
Supported SDKs
Adding a new SDK is as simple as dropping a JSON file into the
sdks/directory.
Tools
iDocumentation
Tool | Description |
| List all available SDKs with their categories and documentation pages |
| Full-text search across all SDK documentation, returns relevant sections |
| Invalidate cache and re-fetch documentation (all or specific SDK) |
Package Registries
Tool | Description |
| Search for packages across npm, pub.dev, CocoaPods, Maven Central, or PyPI |
| Get latest version, license, homepage, and repository for any package |
GitHub
Tool | Description |
| Fetch open issues from any GitHub repo with optional label filtering |
Package Registries
Getting Started
Quick Start (npx — no install needed)
Run directly without installing:
npx @freeapptools/mobile-docs-mcpConfigure Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"mobile-docs-mcp": {
"command": "npx",
"args": ["-y", "@freeapptools/mobile-docs-mcp"],
"env": {
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
}
}
GITHUB_TOKENis optional but recommended to avoid GitHub API rate limits (60 → 5,000 requests/hour).
Configure Claude Code
Add to your Claude Code settings:
{
"mcpServers": {
"mobile-docs-mcp": {
"command": "npx",
"args": ["-y", "@freeapptools/mobile-docs-mcp"]
}
}
}Global Install (optional)
If you prefer a permanent installation:
npm install -g @freeapptools/mobile-docs-mcpThen use mobile-docs-mcp directly as the command instead of npx.
Adding a New SDK
Create a JSON file in the sdks/ directory:
{
"name": "YourSDK",
"version": "latest",
"baseUrl": "https://docs.yoursdk.com",
"docs": [
{
"category": "Getting Started",
"pages": [
{
"title": "Installation",
"url": "https://docs.yoursdk.com/install"
},
{
"title": "Quick Start",
"url": "https://docs.yoursdk.com/quickstart"
}
]
}
]
}That's it. The server picks it up automatically on next startup.
Configuration
docs-config.json in the project root:
{
"cacheTtlMs": 86400000,
"cacheDir": ".cache",
"sdksDir": "./sdks"
}Field | Default | Description |
|
| Cache time-to-live in milliseconds |
|
| Local cache directory path |
|
| Directory containing SDK JSON files |
Override the config path with the DOCS_CONFIG_PATH environment variable.
Development
# Watch mode
npm run dev
# Run tests (82 tests)
npm test
# Build
npm run buildProject Structure
mobile-docs-mcp/
├── src/
│ ├── index.ts # Entry point — stdio transport
│ ├── config.ts # Config loading + Zod validation
│ ├── tools.ts # 6 MCP tool registrations
│ ├── resources.ts # MCP resource registrations
│ ├── registry.ts # Package registry API handlers
│ ├── github.ts # GitHub issues API
│ ├── fetcher.ts # HTML → Markdown conversion
│ ├── cache.ts # File-based cache with TTL
│ ├── parser.ts # Markdown section parser
│ ├── search.ts # Full-text search engine
│ ├── types.ts # TypeScript interfaces
│ └── __tests__/ # 82 unit tests
├── sdks/ # SDK documentation configs (28 files)
├── docs-config.json # Global configuration
├── package.json
└── tsconfig.jsonLicense
MIT
Available Tools
6 toolsget_github_issuesA
Get recent open GitHub issues for a repository. Useful for checking known bugs and feature requests.
| Name | Required | Description | Default |
|---|---|---|---|
| repo | Yes | GitHub repository in 'owner/repo' format (e.g. 'RevenueCat/purchases-ios') | |
| limit | No | Max issues to return (default 15) | |
| labels | No | Filter by label (e.g. 'bug', 'enhancement') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It usefully states that only open issues are returned and that they are recent, which conveys read-only behavior and scoping. However, it omits GitHub-specific traits an agent could encounter: the issues endpoint also returns pull requests, rate limits or auth may apply, and the exact sort ordering behind 'recent' is unspecified.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero filler: the core function is front-loaded in sentence one and the use case in sentence two. The key scoping constraint ('open') is placed early, and every word contributes meaning.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple 3-parameter list tool with no nested objects or output schema, the description plus the fully documented schema covers function, scope, and use case adequately. The notable gaps are the lack of any hint about the return payload shape (which matters since no output schema exists) and the pull-request-inclusion quirk of GitHub's issues API, both minor for a tool this straightforward.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%: repo includes owner/repo format with an example, limit has minimum, maximum, and default, and labels provides example values. The description adds no parameter-level detail, but since the schema fully documents every parameter, the baseline of 3 applies because the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific verb-object pair ('Get recent open GitHub issues') scoped to a repository, making the action and resource unambiguous. It also adds the use case ('checking known bugs and feature requests'), which clearly separates it from all sibling tools that concern docs, SDKs, and packages rather than issue tracking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The second sentence ('Useful for checking known bugs and feature requests') implies when the tool should be used, giving some context for issue triage and repo-health checks. However, it never states explicit conditions or names alternatives, and there is no when-not-to-use guidance. The risk is low because no sibling overlaps with GitHub issues, but the usage direction remains implied rather than explicit.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_package_infoA
Get detailed info about a specific package (latest version, license, homepage, repository)
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Package name (e.g. 'react-native-purchases', 'com.revenuecat.purchases:purchases-android') | |
| registry | Yes | Package registry |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It does disclose the concrete output categories, which is useful, but it does not mention behavior when the package is unknown, registry mismatches, or any auth/private-package considerations. The read-only nature is evident from 'get', but failure behavior is left unexplained.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single, front-loaded sentence that states the operation and immediately lists the useful return fields. There is no filler or redundant restatement of the tool name.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter lookup with no output schema, the description is almost complete: it names the tool's scope and return content while the schema handles parameter details. It could be more complete by explicitly steering agents to search_packages for discovery, but nothing essential for a correct call is missing.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already explains both parameters well, including examples for name and an enum for registry. The description adds no additional parameter-level meaning, which is acceptable given the high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a clear verb-resource pair: 'Get detailed info about a specific package' and lists the exact return areas (latest version, license, homepage, repository). This distinguishes it from siblings like search_packages, though it does not explicitly name or contrast any sibling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this tool is for retrieving details about an already-identified package, but it gives no explicit guidance about when to use it instead of search_packages or other sibling tools. There are no exclusions or alternative-routing hints.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_sdksA
List all available SDK documentation sources with categories
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the full behavioral burden. It communicates that this is a non-mutating enumeration of sources and that output is categorized, but it does not disclose return shape, whether categories are top-level or per-source, or any auth/refresh behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
A single sentence with no filler; the verb, object, scope, and categorization detail are all front-loaded. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a parameterless listing tool with no output schema, this description is nearly complete. It defines what is listed ('all available SDK documentation sources') and the organization ('with categories'), though an explicit statement of the returned data shape would make it fully self-contained.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters and an empty input schema, which makes the schema coverage essentially 100%. Per the zero-parameter baseline, the description need not explain parameter behavior, and it doesn't introduce any conflicting parameter implications.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('List') and resource ('all available SDK documentation sources'), and adds that results are grouped by categories. This clearly separates it from sibling tools like search_docs, refresh_docs, and the package/issue getters without requiring schema inspection.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is given about when to choose this tool over search_docs, refresh_docs, or search_packages. The intended use for discovering/cataloging sources is only implied by the tool name and sibling list, not stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
refresh_docsB
Refresh cached documentation. Optionally specify an SDK name to refresh only that SDK.
| Name | Required | Description | Default |
|---|---|---|---|
| sdk | No | SDK name to refresh, or omit for all |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description bears the full burden of behavioral disclosure. It states only that cached documentation is refreshed, but does not disclose side effects, idempotence, network dependence, scope of impact, or whether the operation is synchronous.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with the primary action front-loaded and the optional parameter stated immediately after. Every word contributes, with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-optional-parameter tool with no output schema, the description is minimally sufficient for basic invocation. However, it omits behavioral context such as what a refresh entails, whether it affects all cached docs at once, and when it should be called, leaving gaps for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already documents the sdk parameter at 100% coverage, so the description adds little new information. It does restate the optionality and scoping ('only that SDK'), which is helpful but does not extend the schema description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('refresh') and resource ('cached documentation'), making the operation unambiguous. The optional SDK scoping further distinguishes it from sibling read-oriented tools like list_sdks, search_docs, and search_packages.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It does not mention a trigger condition such as stale cache, nor does it suggest using sibling tools for searching or listing, leaving an agent to infer usage context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_docsB
Search across all SDK documentation. Returns relevant sections matching the query.
| Name | Required | Description | Default |
|---|---|---|---|
| sdk | No | Filter by SDK name (e.g. 'RevenueCat') | |
| query | Yes | Search query |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
There are no annotations, so the description carries the full burden. It discloses that the operation is a search and that it returns sections rather than entire documents, which is useful. However, it does not explain matching behavior, result limits, default scope, or whether the sdk filter narrows the search across all docs.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two short sentences with no filler. The action is front-loaded and the return behavior is stated in the second sentence. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple and the schema covers both parameters, but there is no output schema and the description only vaguely promises 'relevant sections.' It also omits any clarification about how the optional sdk filter interacts with the all-docs scope, leaving some context incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both query and sdk parameters. The description does not add meaningful parameter-level detail beyond saying the search spans all SDK documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
States a clear action (search), a specific resource (SDK documentation), and the expected result (relevant sections matching the query). It does not explicitly distinguish itself from sibling tool search_packages, but the resource target is specific enough to be understood.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided about when to use this tool versus alternatives like search_packages or list_sdks. The description implies a broad documentation search but does not state when to prefer this tool or how the optional sdk filter should influence the choice.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_packagesB
Search for packages/libraries in a package registry (npm, pub.dev, CocoaPods, Maven Central, PyPI)
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query (e.g. 'revenuecat', 'onesignal') | |
| registry | Yes | Package registry to search in |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It implies a read-only search action and lists registries, but it does not describe the result shape, result limits, pagination, network dependency, or any other behavioral characteristic the agent might need to anticipate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. It efficiently communicates the action, resource, and scope in a compact form.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with two required parameters and full schema coverage, so invoking it correctly is relatively easy. However, with no output schema and no annotations, the absence of any mention of return value or result shape leaves the description incomplete for an agent predicting what the call will produce.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Both parameters are fully documented in the schema (query with examples, registry with enum values), so the baseline is 3. The description adds friendly registry names that map to the enum values, but otherwise provides no new parameter semantics beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Search'), defines the resource ('packages/libraries'), and scopes it to a package registry with enumerable examples (npm, pub.dev, CocoaPods, Maven Central, PyPI). This clearly distinguishes it from siblings like search_docs, which targets documentation, and get_package_info, which would retrieve details for a known package.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit guidance is given on when to use this tool versus alternatives. It does not mention get_package_info for follow-up details on a specific package, nor does it contrast with search_docs for documentation searches. The only differentiation is the implicit 'package registry' phrase, which is not sufficient for confident tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
6 tool updates
v1.1.2- First observed
get_github_issues - First observed
get_package_info - First observed
list_sdks - First observed
refresh_docs - First observed
search_docs - First observed
search_packages
TDQS
Scored across 6 tools
Each tool targets a distinct area: SDK listing, doc search, doc cache refresh, package search, package details, and GitHub issues. There is slight potential overlap between list_sdks and search_docs, but descriptions make the boundary clear.
All tool names follow a consistent snake_case verb_noun pattern: list_, search_, refresh_, get_. No mixed conventions or vague verbs.
Six tools is well-scoped for a mobile documentation and package-lookup server. Each tool serves a clear purpose without redundancy or bloat.
The core workflows—discovering SDKs, searching docs, looking up packages, and checking repository issues—are covered. Minor gaps exist such as no full-document retrieval endpoint, but agents can work around this via search_docs.
Maintenance
Related MCP Connectors
An MCP server that gives your AI access to the source code and docs of all public github repos
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server implementation that provides tools for retrieving and processing documentation through vector search, enabling AI assistants to augment their responses with relevant documentation context6 npm265MIT
- FlicenseBqualityDmaintenanceAn MCP server that fetches real-time documentation for popular libraries like Langchain, Llama-Index, MCP, and OpenAI, allowing LLMs to access updated library information beyond their knowledge cut-off dates.13-
- AlicenseNot gradedqualityDmaintenanceGeneric MCP server that exposes Markdown documentation to LLMs, enabling them to search and answer questions about any software documentation.MIT
- FlicenseNot gradedqualityBmaintenanceLocal MCP server that indexes documentation from URLs/files into a vector database, enabling coding agents to search and use up-to-date library and API documentation.-