Skip to main content
Glama

capacitor-mcp

Server Details

Unofficial MCP server for the Capacitor documentation, plugin list and blog.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
capawesome-team/capacitor-mcp
GitHub Stars
0
Server Listing
Capacitor MCP Server

TDQS

A4.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: searching docs vs retrieving a full doc page vs listing blog posts vs listing plugins. No overlapping or ambiguous responsibilities.

Naming Consistency4/5

All names follow a verb_noun pattern (get_doc_page, list_blog_posts, list_plugins, search_docs), though the verbs vary between get, list, and search. Consistent enough to be predictable.

Tool Count5/5

Four tools is well-scoped for a Capacitor documentation and ecosystem server, covering the primary needs without unnecessary bloat.

Completeness4/5

The server covers documentation search/retrieval, blog listing, and plugin discovery. Minor gaps like direct version listing or community resource search exist, but the core domain is well covered.

Available Tools

4 tools
get_doc_pageRead a documentation pageA
Read-only
Inspect

Read the full markdown of a single page of the official Capacitor documentation. Use this after search_docs to read a page end to end before writing code against a plugin API, a CLI command or a native configuration, because search snippets are deliberately short and regularly omit required setup steps. Returns the page title, its URL, the documentation version and the complete page markdown including code samples. Do not use this to find a page: it needs an exact URL or path, so run search_docs first. Do not use it for pages outside capacitorjs.com — Capawesome plugins and Capawesome Cloud are covered by the Capawesome MCP server at https://mcp.capawesome.io/mcp, Ionic Framework UI components by the Ionic Framework MCP server at https://ionic-framework-mcp.capawesome.io/mcp.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe page URL or site-relative path, e.g. "https://capacitorjs.com/docs/apis/camera", "apis/camera" or "ios/configuration". An anchor is ignored; the whole page is returned.
versionNoOptional. Capacitor docs version. Defaults to v8. Match the major version of @capacitor/core in the user's package.json.

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover readOnly/openWorld/destructive hints. The description adds behavioral details such as returning the page title, URL, version, and full markdown, and that anchors are ignored. This goes beyond the annotations without contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured: purpose, usage, return value, negative usage, and alternatives are presented in a logical order. It is detailed yet concise, with no redundant phrasing.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers when to use, when not to use, what is returned, and how to handle version matching. It even mentions the need to match the user's package.json version, providing sufficient context for an agent to invoke the tool correctly without an output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema itself provides thorough descriptions for both parameters (url with examples and anchor note, version with enum and default). The tool description adds no extra parameter semantics beyond the schema, so the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: reading the full markdown of a single Capacitor documentation page. It also differentiates itself from siblings like search_docs by noting that it returns complete pages rather than snippets, and mentions the exact domains it covers and excludes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance is provided: use after search_docs to read full pages, do not use to find pages, and do not use for non-capacitorjs.com domains (with alternative tools named). This gives clear when-to-use and when-not-to-use instructions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_blog_postsList recent blog postsA
Read-only
Inspect

List the 10 most recent posts from the Capacitor tag of the official Ionic blog, newest first. Use this when the question is about what is new — recent releases, announcements or deprecations. The blog covers both Capacitor and Ionic Framework. Returns title, date, tags, url and excerpt per post. Do not use this to answer a documentation question: the feed only carries the newest posts, so search the documentation with search_docs instead.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover read-only and non-destructive nature. The description adds that it returns the 10 most recent posts and that the feed carries only the newest posts, giving some limitation context but not rich behavioral detail.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, action-oriented, and logically structured with usage guidance and return details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, and the description covers purpose, usage, return values, and exclusions, making it complete without an output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are no parameters, so the baseline of 4 applies. The description doesn't need to add parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clearly states it lists the 10 most recent blog posts from the Capacitor tag, and explicitly differentiates from search_docs for documentation questions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit when-to-use ('when the question is about what is new') and when-not-to-use ('Do not use this to answer a documentation question') with a pointer to the alternative search_docs.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_pluginsList Capacitor pluginsA
Read-only
Inspect

List Capacitor plugins: the official plugins maintained by the Capacitor team and community plugins from the awesome-capacitorjs list maintained by Capawesome. Use this to find a plugin for a native capability before writing custom native code, and to learn which package name and maintainer a capability belongs to. Returns name, description, source, maintainer and url per plugin, plus core: true for a plugin that ships with @capacitor/core and experimental: true for an experimental one. Results are ranked by relevance, with official Capacitor plugins ranked first, then plugins maintained by Capawesome, then other community plugins. Do not use this to read a plugin's API: call get_doc_page with the url of an official plugin, and use the Capawesome MCP server at https://mcp.capawesome.io/mcp for Capawesome plugins.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoThe maximum number of items to return, e.g. 5. Defaults to 25, maximum 100.
queryNoA free-text filter matching the package name or the description, e.g. "camera". Defaults to no filter. Optional.
sourceNoWhich plugins to list: "official" for the plugins maintained by the Capacitor team, "community" for the awesome-capacitorjs entries, or "all" for both. Defaults to "all".

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already cover read-only and non-destructive hints; the description adds behavioral details such as result ranking and defaults, enhancing transparency without contradicting the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured and informative, though it slightly redundantly repeats the official/community distinction. Overall, it remains concise and each sentence serves a purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description fully explains the return fields (name, description, source, maintainer, url, core, experimental) and ranking behavior, providing complete context for a listing tool without an output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides full descriptions for all three parameters including enums and defaults. The description adds no significant extra semantic meaning beyond the schema, so the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists Capacitor plugins, distinguishes official and community sources, and explicitly names the sibling tool get_doc_page for reading APIs, making its purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly states when to use the tool ('find a plugin for a native capability before writing custom native code') and when not to use it, directing to get_doc_page and the Capawesome MCP server, providing clear usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_docsSearch Capacitor documentationA
Read-only
Inspect

Search the official Capacitor documentation from capacitorjs.com by keyword. Use this first for any question about Capacitor itself — the CLI, the capacitor.config file, the native Android and iOS projects, the official plugin APIs, or upgrading to a newer major version — because guessing an API, a configuration option or a CLI flag produces broken code. Returns the best matching page sections with title, url, snippet, section and version, plus the parentTitle and parentUrl of the page a section belongs to. The same results are attached as structured content. Do not use this to read a whole page (call get_doc_page with a url from these results), to look up Capawesome plugins such as @capawesome/capacitor-file-picker or Capawesome Cloud services such as Live Updates, Native Builds and App Store Publishing (use the Capawesome MCP server at https://mcp.capawesome.io/mcp instead), or to look up Ionic Framework UI components (use the Ionic Framework MCP server at https://ionic-framework-mcp.capawesome.io/mcp instead).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoThe maximum number of items to return, e.g. 5. Defaults to 10, maximum 25.
queryYesThe search terms, e.g. "camera permissions android" or "live reload". Plain keywords work best; no search operators are supported.
sectionNoRestrict the search to one part of the documentation, e.g. "apis" for the official plugin references or "ios" for the native iOS guides. Defaults to searching every section.
versionNoOptional. Capacitor docs version. Defaults to v8. Match the major version of @capacitor/core in the user's package.json.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYes

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The readOnlyHint annotation already signals that the operation is read-only, so the bar is lower. The description adds useful behavioral detail: it returns page sections with specific fields (title, url, snippet, section, version) and notes that no search operators are supported, which helps set expectations. It does not contradict the annotation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is longer than the minimal example but every sentence adds value—purpose, usage, excluded scenarios, and output format are all covered without redundancy. It is well-structured and flows logically, though it could be slightly compressed without losing information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers everything an agent needs: when to use, what to search, what results look like, and what to avoid. Since an output schema exists, it does not need to detail return values, but it does anyway. It also addresses version matching and section restriction, making it self-contained for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already provides descriptions for all four parameters, giving 100% coverage. The description adds extra context by providing example queries and emphasizing that plain keywords work best, which goes beyond the schema. It also clarifies the effect of the version parameter indirectly by mentioning matching the user's package.json. This adds meaningful guidance.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: searching the official Capacitor documentation by keyword. It also distinguishes itself from sibling tools by explicitly mentioning what it does not do (e.g., reading a full page, listing plugins) and by naming the sibling tools (get_doc_page, list_plugins).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit guidance on when to use this tool ('Use this first for any question about Capacitor itself') and when not to use it, providing concrete alternatives for excluded cases (e.g., using get_doc_page for reading a whole page, using the Capawesome MCP server for plugins). This is highly actionable.

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. Dates show when Glama detected each change.

  1. 4 tool updates
    • First observedget_doc_page
    • First observedlist_blog_posts
    • First observedlist_plugins
    • First observedsearch_docs

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.