Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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),
            }],
          };
        }
      );
    }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/divineDev-dotcom/android_mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server