Tools Reference

Complete reference for all 98 tools available through the AppsAI MCP server.

98
Total Tools
8
Categories
25
Canvas Tools
23
AWS Tools

Tool Categories

Tools are organized into categories based on their function. Each tool name is prefixed with its category (e.g., canvas_SET_ELEMENT) for easy identification.

Tool Naming Convention

{category}_{ACTION}

Example: canvas_SET_ELEMENT, mongodb_createQuery

Common Parameters

Most tools require a projectId parameter to identify which project to operate on.

ParameterTypeDescription
projectIdstringThe ID of the project to operate on
filePathstringPath to a file relative to project root
elementIdstringUnique identifier for a React element

Response Format

All tools return responses in a consistent format:

{
  "content": [
    {
      "type": "text",
      "text": "{ ... JSON response ... }"
    }
  ]
}

Error responses include an isError: true flag and a descriptive message.