live · AI Agents & Fintech · JSON · API for agents
/Search and browse published Mana creations.
{
"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": "/"
}List popular tags used by the Mana community.
{
"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": "/"
}Fetch either a public Mana creator profile or one public Mana creation.
{
"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": "/"
}/privacy-policy/Look up a Mana creator's public profile and their published apps by their handle (e.g. 'simon').
{
"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/"
}