Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"android-skills": {
"args": [
"-y",
"android-skills-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Android Skills MCP wraps Google's android/skills library so any AI coding assistant can use it without copy and paste. The repository ships two tools that share a common parser and a bundled snapshot of the upstream skills, so both work offline through npx.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked android-skills-mcp against OSV.dev.
Click any tool to inspect its schema.
skillAndroid skill resource
skill://{name}
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
Copy/paste detector for programming source code, supports 223 formats. AI-ready with token-efficient reporter, skill and MCP server.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
MCP Security Weekly
Get CVE alerts and security updates for Android Skills Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Android Skills MCP wraps Google's android/skills library so any AI coding assistant can use it without copy and paste. The repository ships two tools that share a common parser and a bundled snapshot of the upstream skills, so both work offline through npx.
You get an MCP server that exposes the skill library to any MCP capable client, and a packager CLI that converts each SKILL.md into the native rules format of every major AI coding assistant.
Full documentation lives at skydoves.github.io/android-skills-mcp.
This is a pnpm workspace with three packages:
android-skills-mcp is an MCP server. It speaks stdio, ships three tools (list_skills, search_skills, get_skill), and exposes every skill as a skill:// resource. Any MCP client (Claude Code, Cursor, Codex CLI, Windsurf) can discover and pull the right skill on demand.android-skills-pack is a CLI. It converts the upstream SKILL.md files into seven native rules formats (Claude Code, Cursor, GitHub Copilot, Gemini Code Assist, JetBrains Junie, Continue.dev, Aider) and writes them into your project.@android-skills/core is the shared library used by both. It parses SKILL.md frontmatter with gray-matter, validates against the agentskills.io spec via zod, and builds a BM25 index with minisearch.You need this once per machine. Every project you open afterwards can use the skills.
claude mcp add android-skills -- npx -y android-skills-mcp
Add an entry to .cursor/mcp.json:
{
"mcpServers": {
"android-skills": {
"command": "npx",
"args": ["-y", "android-skills-mcp"]
}
}
}
Anywhere you can register an MCP server with a stdio command, run:
npx -y android-skills-mcp
The bundled snapshot loads in under 200 ms, so the cost of spawning the server per session is negligible.
If you prefer rules files committed to your repository over an MCP server, the packager CLI writes them directly. You can pick a single target or all:
npx android-skills-pack install --target cursor
npx android-skills-pack install --target claude-code
npx android-skills-pack install --target copilot
npx android-skills-pack install --target all
You can also filter to a specific skill:
npx android-skills-pack install --target cursor --skill edge-to-edge
npx android-skills-pack install --target claude-code --skill edge-to-edge,r8-analyzer
The full list of supported targets:
| Target | Output | Notes |
|---|---|---|
claude-code | .claude/skills/<name>/SKILL.md | Near 1:1 copy with references kept as separate files. |
cursor | .cursor/rules/<name>.mdc | description plus alwaysApply: false frontmatter; references inlined. |
copilot | .github/instructions/<name>.instructions.md | applyTo: "**" frontmatter. |
gemini | .gemini/styleguide.md | Single concatenated file with ## <skill> sections. |
junie | .junie/skills/<name>/SKILL.md | JetBrains Junie supports the agentskills.io spec natively. |
continue | .continue/rules/<name>.md |