← WebMCP Directory

Tool tree

gutobiel.vercel.app

Media & Personal
https://gutobiel.vercel.app/
Augusto Gabriel's portfolio covering full-stack development and AI agents, with projects, skills, and professional experience.
Explore capabilities

Tools verified

list_experienceAnswer

Read professional career history, employment roles, periods, activities, and associated technologies.

View tool JSON
{
  "name": "list_experience",
  "kind": "answer",
  "impl": "imperative",
  "description": "Read professional career history, employment roles, periods, activities, and associated technologies.",
  "inputSchema": {
    "type": "object",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {},
    "additionalProperties": false
  }
}
list_projectsAnswer

List and filter portfolio projects with descriptions, technology tags, and source code or live demo links.

View tool JSON
{
  "name": "list_projects",
  "kind": "answer",
  "impl": "imperative",
  "description": "List and filter portfolio projects with descriptions, technology tags, and source code or live demo links.",
  "inputSchema": {
    "type": "object",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "query": {
        "type": "string",
        "description": "Optional search keyword to match project title or description"
      },
      "technology": {
        "type": "string",
        "description": "Optional technology name to filter projects (e.g., Vue, JavaScript, HTML, Python)"
      }
    },
    "additionalProperties": false
  }
}
list_skillsAnswer

List technical skills and competencies categorized by Frontend, Backend, AI & Automation, and Tools.

View tool JSON
{
  "name": "list_skills",
  "kind": "answer",
  "impl": "imperative",
  "description": "List technical skills and competencies categorized by Frontend, Backend, AI & Automation, and Tools.",
  "inputSchema": {
    "type": "object",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "category": {
        "type": "string",
        "description": "Optional category filter (e.g., Frontend, Backend, IA & Automacao, Ferramentas)"
      }
    },
    "additionalProperties": false
  }
}
start_contactSensitive Action

Initiate communication or schedule a meeting via WhatsApp, Email, LinkedIn, or GitHub.

View tool JSON
{
  "name": "start_contact",
  "kind": "transact",
  "impl": "imperative",
  "description": "Initiate communication or schedule a meeting via WhatsApp, Email, LinkedIn, or GitHub.",
  "inputSchema": {
    "type": "object",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "channel": {
        "enum": [
          "whatsapp",
          "email",
          "linkedin",
          "github"
        ],
        "type": "string",
        "description": "Communication channel to initiate (default: whatsapp)"
      }
    },
    "additionalProperties": false
  }
}
toggle_view_modeAction

Switch the portfolio interface view between Human mode and AI mode.

View tool JSON
{
  "name": "toggle_view_mode",
  "kind": "act",
  "impl": "imperative",
  "description": "Switch the portfolio interface view between Human mode and AI mode.",
  "inputSchema": {
    "type": "object",
    "$schema": "http://json-schema.org/draft-07/schema#",
    "required": [
      "mode"
    ],
    "properties": {
      "mode": {
        "enum": [
          "humano",
          "ia"
        ],
        "type": "string",
        "description": "The interface mode to activate: 'humano' for standard human mode, 'ia' for AI-optimized mode"
      }
    },
    "additionalProperties": false
  }
}