Skip to main content
Glama

list_apps

Discover available integrations and apps in Agentled to identify tools for building workflows, including LinkedIn enrichment, email finder, web scraping, and CRM connections.

Instructions

List all available apps/integrations in Agentled. Returns app names, descriptions, and action summaries. Use this to discover what integrations are available before building a workflow. Common apps: agentled (LinkedIn enrichment, email finder), hunter (email), web-scraping, affinity-crm, specter, http-request.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Registration of the 'list_apps' tool in the MCP server.
        server.tool(
            'list_apps',
            `List all available apps/integrations in Agentled. Returns app names, descriptions, and action summaries.
    Use this to discover what integrations are available before building a workflow.
    Common apps: agentled (LinkedIn enrichment, email finder), hunter (email), web-scraping, affinity-crm, specter, http-request.`,
            {},
            async (_args, extra) => {
                const client = clientFactory(extra);
                const result = await client.listApps();
                return {
                    content: [{
                        type: 'text' as const,
                        text: JSON.stringify(result, null, 2),
                    }],
                };
            }
        );
  • The implementation of the 'listApps' method which performs the API request to the backend.
    async listApps() {
        return this.request('/apps');
    }

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/Agentled/mcp-server'

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