list_plugins
Discover available plugins and their versions in the Android MCP Server to manage app control, UI automation, and device analysis capabilities.
Instructions
List all loaded MCP server plugins and their versions.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/mcp/plugin-loader.ts:126-150 (registration)The `list_plugins` tool is registered and implemented directly within `registerPluginTools` in `src/mcp/plugin-loader.ts`. The handler logic is provided as the async function callback to `server.registerTool`.
export function registerPluginTools(server: McpServer): void { server.registerTool( 'list_plugins', { description: 'List all loaded MCP server plugins and their versions.', inputSchema: {}, }, async () => { return { content: [{ type: 'text' as const, text: JSON.stringify({ success: true, plugins: loadedPlugins.map(p => ({ name: p.name, version: p.version, description: p.description, })), totalLoaded: loadedPlugins.length, }, null, 2), }], }; } ); }