fortytwo_app_search

Pack: 42matters · Endpoint: https://gateway.pipeworx.io/42matters/mcp

Search the app store by keyword and return matching apps with pagination. Example: fortytwo_app_search({ platform: “ios”, query: “racing games”, limit: 20, page: 1, _apiKey: “your-token” })

Parameters

NameTypeRequiredDescription
platformstringno
querystringyesSearch term, e.g. “racing games”, “meditation”.
limitnumbernoResults per page (1-50). Default 10.
pagenumbernoPage number for pagination (default 1).
_apiKeystringyes42matters API access token (get one at https://42matters.com/pricing).

Example call

Arguments

{
  "platform": "ios",
  "query": "racing games",
  "limit": 20,
  "page": 1,
  "_apiKey": "your-42matters-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/42matters/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fortytwo_app_search","arguments":{"platform":"ios","query":"racing games","limit":20,"page":1,"_apiKey":"your-42matters-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('fortytwo_app_search', {
  "platform": "ios",
  "query": "racing games",
  "limit": 20,
  "page": 1,
  "_apiKey": "your-42matters-api-key"
});

More examples

{
  "platform": "android",
  "query": "meditation",
  "_apiKey": "your-42matters-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "42matters": {
      "url": "https://gateway.pipeworx.io/42matters/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 24, 2026