
About
Android Skills MCP wraps Google's android/skills library so any AI coding assistant can use it without copy and paste. The server exposes the skill library to any MCP-capable client and works offline through npx.
Features
- Three tools:
list_skills,search_skills,get_skillfor discovering and retrieving Android development skills - Resource protocol: Every skill is exposed as a
skill://resource - Offline-first: Bundles a snapshot of upstream skills, loads in under 200ms
- Built on official Android skills: Uses Google's
android/skillslibrary - BM25 search: Full-text search index powered by minisearch
Tools
list_skills
Lists all available Android skills from the bundled snapshot.
search_skills
Searches skills using BM25 full-text search. Useful for finding relevant Android development skills by keyword or topic.
get_skill
Retrieves the complete content of a specific Android skill by name.
Installation
Claude Code
claude mcp add android-skills -- npx -y android-skills-mcp
Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"android-skills": {
"command": "npx",
"args": ["-y", "android-skills-mcp"]
}
}
}
Other MCP clients
Run: npx -y android-skills-mcp
Alternative: CLI Packager
The repository also ships android-skills-pack, a CLI that converts skills into native rules formats for Claude Code, Cursor, GitHub Copilot, Gemini Code Assist, JetBrains Junie, Continue.dev, and Aider:
npx android-skills-pack install --target cursor
npx android-skills-pack install --target all
This server runs through your single 1Server connection. No extra config required.