M

mana.am

Your Personal Agent for iPhone. Conversation becomes creation — let Mana do the work. Words turn into action, from spark to ship, all on your iPhone.

4read
https://mana.am

live · AI Agents & Fintech · JSON · API for agents

Tools 4 tools (across 2 pages)

page: /
search_community_appsread

Search and browse published Mana creations.

View tool JSON
{
  "name": "search_community_apps",
  "kind": "read",
  "impl": "imperative",
  "description": "Search and browse published Mana creations.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "q": {
        "type": "string",
        "description": "Search text."
      },
      "sort": {
        "type": "string",
        "enum": [
          "trending",
          "recent",
          "popular",
          "remixed",
          "liked"
        ],
        "description": "Sort order."
      },
      "category": {
        "type": "string",
        "description": "Category slug."
      },
      "tag": {
        "type": "string",
        "description": "Tag key."
      },
      "featuredOnly": {
        "type": "boolean",
        "description": "Restrict to featured creations."
      },
      "offset": {
        "type": "integer",
        "minimum": 0,
        "default": 0
      },
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 48,
        "default": 10
      },
      "locale": {
        "type": "string",
        "description": "BCP-47 locale."
      }
    },
    "additionalProperties": false
  },
  "page": "/"
}
get_popular_tagsread

List popular tags used by the Mana community.

View tool JSON
{
  "name": "get_popular_tags",
  "kind": "read",
  "impl": "imperative",
  "description": "List popular tags used by the Mana community.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "limit": {
        "type": "integer",
        "minimum": 1,
        "maximum": 100,
        "default": 30,
        "description": "Maximum number of tags to return."
      }
    },
    "additionalProperties": false
  },
  "page": "/"
}
get_public_shareread

Fetch either a public Mana creator profile or one public Mana creation.

View tool JSON
{
  "name": "get_public_share",
  "kind": "read",
  "impl": "imperative",
  "description": "Fetch either a public Mana creator profile or one public Mana creation.",
  "inputSchema": {
    "type": "object",
    "required": [
      "kind",
      "handle"
    ],
    "properties": {
      "kind": {
        "type": "string",
        "enum": [
          "creator",
          "app"
        ],
        "description": "Use \"creator\" for a public creator profile, or \"app\" for one creation."
      },
      "handle": {
        "type": "string",
        "description": "Creator handle."
      },
      "slug": {
        "type": "string",
        "description": "Required when kind is \"app\": the published app slug."
      },
      "locale": {
        "type": "string",
        "description": "BCP-47 locale."
      }
    },
    "additionalProperties": false
  },
  "page": "/"
}
page: /privacy-policy/
get_creator_profileread

Look up a Mana creator's public profile and their published apps by their handle (e.g. 'simon').

View tool JSON
{
  "name": "get_creator_profile",
  "kind": "read",
  "impl": "imperative",
  "description": "Look up a Mana creator's public profile and their published apps by their handle (e.g. 'simon').",
  "inputSchema": {
    "type": "object",
    "properties": {
      "handle": {
        "type": "string",
        "description": "The creator's handle, without the leading @."
      }
    },
    "required": [
      "handle"
    ]
  },
  "page": "/privacy-policy/"
}