{"id":38975,"date":"2026-05-02T14:00:00","date_gmt":"2026-05-02T14:00:00","guid":{"rendered":"https:\/\/www.aurorainbox.com\/?p=38975"},"modified":"2026-05-02T14:00:00","modified_gmt":"2026-05-02T14:00:00","slug":"que-es-mcp-whatsapp","status":"publish","type":"post","link":"https:\/\/www.aurorainbox.com\/en\/2026\/05\/02\/what-is-mcp-whatsapp\/","title":{"rendered":"What is MCP (Model Context Protocol) and how will AI connect with WhatsApp in 2026?"},"content":{"rendered":"<p>MCP (Model Context Protocol) is an open protocol, created by Anthropic in 2024 and adopted in 2025-2026 by OpenAI, Google, and major IDEs, that standardizes how an AI agent discovers and calls external application tools. Applied to WhatsApp Business, MCP allows Claude, ChatGPT\/Codex, Cursor, or a custom agent to search chats, send messages, and move contacts in your CRM without glue code\u2014simply point the agent to an MCP server like Aurora Inbox and paste a key.<\/p>\n<h2 id=\"en-una-frase\">In one sentence<\/h2>\n<p>MCP is to AI agents what USB-C is to devices: a single, standard connector that replaces dozens of custom integrations.<\/p>\n<h2 id=\"por-que-nace-mcp\">Why was MCP created?<\/h2>\n<p>Before MCP, connecting an AI agent to WhatsApp involved one of three paths:<\/p>\n<ol>\n<li><strong>Function calling owner<\/strong> \u2014 define tools in the OpenAI, Anthropic or Google format, one different per provider.<\/li>\n<li><strong>Glue code custom<\/strong> \u2014 write an intermediary server that translates between the agent and the Meta WhatsApp Cloud API.<\/li>\n<li><strong>Proprietary plugins<\/strong> \u2014 wait for each vendor (ChatGPT Plugins, Claude Tool Use) to build the integration in their own way.<\/li>\n<\/ol>\n<p>Result: each agent \u00d7 app combination was a project. 5 agents \u00d7 20 apps = 100 integrations to maintain.<\/p>\n<p>MCP breaks this by defining:<\/p>\n<ul>\n<li><strong>A transport protocol<\/strong> (<code>streamable-http<\/code> either <code>stdio<\/code>) on JSON-RPC 2.0.<\/li>\n<li><strong>A manifest format<\/strong> public that describes the server and its tools.<\/li>\n<li><strong>A standard tool definition scheme<\/strong> that any agent can consume.<\/li>\n<\/ul>\n<p>Any MCP-compatible agent can communicate with any MCP server. A single integration.<\/p>\n<h2 id=\"quien-soporta-mcp-en-2026\">Who supports MCP in 2026<\/h2>\n<table>\n<thead>\n<tr>\n<th>Client \/ Agent<\/th>\n<th>MCP Support<\/th>\n<th>Config<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Claude Desktop (Anthropic)<\/td>\n<td>Native since 2024<\/td>\n<td><code>claude_desktop_config.json<\/code><\/td>\n<\/tr>\n<tr>\n<td>Claude Code (CLI)<\/td>\n<td>Native<\/td>\n<td><code>Claude MCP Add<\/code><\/td>\n<\/tr>\n<tr>\n<td>ChatGPT \/ Codex CLI (OpenAI)<\/td>\n<td>Native since 2025<\/td>\n<td><code>~\/.codex\/config.toml<\/code><\/td>\n<\/tr>\n<tr>\n<td>Cursor<\/td>\n<td>Native<\/td>\n<td><code>~\/.cursor\/mcp.json<\/code><\/td>\n<\/tr>\n<tr>\n<td>VS Code + GitHub Copilot<\/td>\n<td>Native since 2025<\/td>\n<td><code>github.copilot.mcp.servers<\/code><\/td>\n<\/tr>\n<tr>\n<td>Windsurf, Continue.dev, Zed<\/td>\n<td>Native<\/td>\n<td>Editor&#039;s own configuration<\/td>\n<\/tr>\n<tr>\n<td>Custom agents (Python\/Node SDK)<\/td>\n<td>Via official SDK<\/td>\n<td>SDK MCP Client<\/td>\n<\/tr>\n<tr>\n<td>Gemini (Google)<\/td>\n<td>Partial (via Vertex AI)<\/td>\n<td>Evolving<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>By the end of 2026, virtually every serious agent will natively support MCP.<\/p>\n<h2 id=\"anatomia-de-un-servidor-mcp\">Anatomy of an MCP server<\/h2>\n<p>An MCP server exposes three things:<\/p>\n<ol>\n<li><strong>Public Manifesto<\/strong> in <code>\/.well-known\/mcp.json<\/code> (or equivalent). Describe the name, vendor, authentication, and recommended configuration for the main clients.<\/li>\n<li><strong>Endpoint MCP<\/strong> (typically <code>\/mcp<\/code>) that speaks JSON-RPC 2.0. There the agent lists tools (<code>tools\/list<\/code>) and invokes them (<code>tools\/call<\/code>).<\/li>\n<li><strong>Tools scheme<\/strong>: each tool has a name (<code>search_chats<\/code>), description, typed parameters (with a description of each one) and a return value.<\/li>\n<\/ol>\n<p>When the agent connects, it reads the manifest, lists the tools, and from that moment on can invoke them as if they were local functions.<\/p>\n<h2 id=\"que-significa-mcp-para-whatsapp-business\">What does MCP mean for WhatsApp Business?<\/h2>\n<p>WhatsApp is the #1 messaging channel in Latin America and emerging markets. Connecting an AI agent to WhatsApp typically requires:<\/p>\n<ul>\n<li>Account with a BSP (Business Solution Provider) authorized by Meta.<\/li>\n<li>API key with permissions on the number and template.<\/li>\n<li>Incoming webhook logic for receiving messages.<\/li>\n<li>Outgoing sending logic (text, templates, multimedia).<\/li>\n<li>CRM in place to avoid losing contacts or history.<\/li>\n<li>Rate limits to avoid degrading the quality of numbers in Meta.<\/li>\n<\/ul>\n<p>With an MCP server in front of all that, <strong>the agent only invokes tools<\/strong>She doesn&#039;t care how Aurora talks to Meta; she sees <code>send_message<\/code>, <code>search_chats<\/code>, <code>create_contact<\/code> and calls them. The MCP server handles auth, rate limit, audit log, multi-channel, and CRM.<\/p>\n<h2 id=\"comparativa-mcp-vs-alternativas\">Comparison: MCP vs alternatives<\/h2>\n<table>\n<thead>\n<tr>\n<th>Dimension<\/th>\n<th>MCP<\/th>\n<th>Webhooks Only<\/th>\n<th>Custom API + glue<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Setup time<\/td>\n<td>5 minutes<\/td>\n<td>1-2 days<\/td>\n<td>1-2 weeks<\/td>\n<\/tr>\n<tr>\n<td>Lines of code<\/td>\n<td>0<\/td>\n<td>~200<\/td>\n<td>500+<\/td>\n<\/tr>\n<tr>\n<td>Multi-agent<\/td>\n<td>\u2705 Native<\/td>\n<td>\u274c Each agent reimplements<\/td>\n<td>\u274c Each agent reimplements<\/td>\n<\/tr>\n<tr>\n<td>Audit trail<\/td>\n<td>\u2705 Per server<\/td>\n<td>Manual<\/td>\n<td>Manual<\/td>\n<\/tr>\n<tr>\n<td>centralized rate limit<\/td>\n<td>\u2705<\/td>\n<td>\u274c<\/td>\n<td>Manual<\/td>\n<\/tr>\n<tr>\n<td>Vendor lock-in<\/td>\n<td>Under (open protocol)<\/td>\n<td>Under<\/td>\n<td>High<\/td>\n<\/tr>\n<tr>\n<td>Discoverability<\/td>\n<td>\u2705 Public Manifesto<\/td>\n<td>\u274c<\/td>\n<td>\u274c<\/td>\n<\/tr>\n<tr>\n<td>Maintenance<\/td>\n<td>The server evolves, the agent does not.<\/td>\n<td>Each agent<\/td>\n<td>Each integration<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2 id=\"el-servidor-mcp-de-aurora-inbox\">Aurora Inbox MCP server<\/h2>\n<p>Aurora Inbox publishes its MCP server on <code>https:\/\/developers.aurorainbox.com\/mcp<\/code> with public manifesto in <code>https:\/\/developers.aurorainbox.com\/.well-known\/mcp.json<\/code>. Supports:<\/p>\n<ul>\n<li><strong>MCP Protocol<\/strong> version <code>2025-03-26<\/code>.<\/li>\n<li><strong>Transport<\/strong> <code>streamable-http<\/code>.<\/li>\n<li><strong>Auth<\/strong> via Platform API key (<code>Authorization: Bearer ak_live_\u2026<\/code>).<\/li>\n<li><strong>30+ tools<\/strong> that cover chats, messages, contacts, companies, opportunities, channels, chatbots, teams, users, webhooks, and diagnostics.<\/li>\n<li><strong>Multi-channel<\/strong>The same tool works for WhatsApp Cloud API, WhatsApp Business, Messenger, and Instagram (<code>channelType<\/code> 0-3).<\/li>\n<li><strong>Rate limits per tenant<\/strong> in <code>send_message<\/code> (1 message\/sec) to protect number quality with Meta.<\/li>\n<li><strong>Native audit log<\/strong>: each call is associated with the <code>keyId<\/code> that originated it.<\/li>\n<\/ul>\n<p>This means: any MCP-compatible agent can drive Aurora end-to-end with a single key. The same key works in Claude Code, Codex, Cursor, Claude Desktop, and VS Code Copilot.<\/p>\n<h2 id=\"casos-de-uso-tipicos\">Typical use cases<\/h2>\n<h3 id=\"triage-automatizado\">Automated triage<\/h3>\n<p>An agent checks unanswered chats every morning (<code>search_chats(unanswered=true)<\/code>), prioritizes by urgency and leaves an internal note on each one with the response plan.<\/p>\n<h3 id=\"outreach-proactivo\">Proactive outreach<\/h3>\n<p>An agent connected to your CRM detects leads who opened an email but didn&#039;t reply, opens or reuses a WhatsApp chat (<code>create_chat<\/code>) and sends a personalized follow-up (<code>send_message<\/code>).<\/p>\n<h3 id=\"onboarding-programatico\">Programmatic onboarding<\/h3>\n<p>An agent receives an Excel file with 500 new contacts, inserts them into Aurora with <code>upsert_contact<\/code> and opens opportunities for those who qualify for BANT.<\/p>\n<h3 id=\"operaciones-hibridas\">Hybrid operations<\/h3>\n<p>Front-line: Aurora&#039;s chatbot using GPT-5 handles the 70% volume. Back-office: Claude Code on the rep&#039;s machine automatically escalates flagged chats. <code>unanswered=true<\/code> after 5 minutes.<\/p>\n<h2 id=\"errores-comunes-al-adoptar-mcp\">Common mistakes when adopting MCP<\/h2>\n<ul>\n<li><strong>Confusing an MCP with an LLM<\/strong>MCP is just the protocol; the LLM (Claude, GPT, Gemini) is still what reasons.<\/li>\n<li><strong>Thinking that MCP replaces the REST API<\/strong>Aurora MCP mirrors the Platform V1 REST API 1:1 \u2014 they are two ways of talking to the same thing.<\/li>\n<li><strong>Do not revoke keys of devs who are leaving<\/strong>. Each <code>ak_live_*<\/code> It must be by human or machine, and individually revocable.<\/li>\n<li><strong>Bypass rate limits<\/strong>. <code>send_message<\/code> It&#039;s limited to 1\/sec per tenant in MCP, just like in REST. It&#039;s not a bug; it&#039;s meta-number quality protection.<\/li>\n<\/ul>\n<h2 id=\"que-ganas-adoptando-mcp-en-tu-stack\">What do you gain by adopting MCP in your stack?<\/h2>\n<ul>\n<li>Your sales team uses Claude Desktop to respond to WhatsApp messages with CRM context.<\/li>\n<li>Your support team uses Cursor to resolve issues by writing prompts in natural language.<\/li>\n<li>Your marketing team uses Codex CLI to run massive campaigns respecting rate limits.<\/li>\n<li>Your product team uses VS Code Copilot to build integrations without writing code.<\/li>\n<li><strong>One single key, Aurora, all agents<\/strong>.<\/li>\n<\/ul>\n<h2 id=\"preguntas-frecuentes\">Frequently Asked Questions<\/h2>\n<h3 id=\"mcp-es-solo-de-anthropic\">Is MCP only from Anthropic?<\/h3>\n<p>No. Anthropic released it as a public spec in 2024. OpenAI, Google, Microsoft, and most IDEs adopted it in 2025-2026.<\/p>\n<h3 id=\"necesito-programar-para-usar-mcp\">Do I need to program to use MCP?<\/h3>\n<p>Not for already supported clients (Claude Desktop, Claude Code, Codex, Cursor, VS Code). You just paste a config snippet. For custom agents, there are SDKs in Python, Node, Go, and Rust.<\/p>\n<h3 id=\"mcp-funciona-con-whatsapp-directamente\">Does MCP work directly with WhatsApp?<\/h3>\n<p>Not directly with Meta&#039;s WhatsApp Cloud API. You need an MCP server on top of that\u2014Aurora Inbox provides one ready to use, authenticated, and with CRM support.<\/p>\n<h3 id=\"que-pasa-si-mi-agente-mcp-comete-un-error\">What happens if my MCP agent makes a mistake?<\/h3>\n<p>Aurora validates each call (required fields, valid GUIDs, user roles) and returns typed errors. Your agent receives the error and can retry or escalate.<\/p>\n<h3 id=\"mcp-soporta-streaming-de-respuestas\">Does MCP support response streaming?<\/h3>\n<p>Yes. Transportation <code>streamable-http<\/code> It allows the server to push events to the agent \u2014 useful for tools that take time (e.g., starting a chatbot, syncing a catalog).<\/p>\n<h3 id=\"como-empiezo\">How do I begin?<\/h3>\n<p>Create an account <a href=\"https:\/\/www.aurorainbox.com\/en\/Identity\/Account\/Register\/?Trial=1\">Aurora Inbox<\/a>Generate your key in the Developer Portal and paste it into your favorite MCP client. 5 minutes from start to finish. Specific guides:<\/p>\n<ul>\n<li><a href=\"\/en\/conectar-claude-code-whatsapp-aurora-mcp\/\">Connect Claude Code<\/a><\/li>\n<li><a href=\"\/en\/conectar-codex-cli-whatsapp-aurora-mcp\/\">Connect Codex CLI (OpenAI)<\/a><\/li>\n<li><a href=\"\/en\/conectar-claude-desktop-whatsapp-aurora-mcp\/\">Connect Claude Desktop<\/a><\/li>\n<li><a href=\"\/en\/conectar-cursor-whatsapp-aurora-mcp\/\">Connect Cursor<\/a><\/li>\n<li><a href=\"\/en\/conectar-vscode-copilot-whatsapp-aurora-mcp\/\">Connect VS Code + Copilot<\/a><\/li>\n<li><a href=\"\/en\/casos-uso-agentes-ia-whatsapp-mcp\/\">10 Use Cases for Agents in WhatsApp with Aurora MCP<\/a><\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>MCP is the open protocol that connects AI agents (Claude, ChatGPT, Cursor) with real-world applications like WhatsApp Business. What it is, how it works, and why it&#039;s a game-changer.<\/p>","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[452],"tags":[454,550,539,549,219],"class_list":["post-38975","post","type-post","status-publish","format-standard","hentry","category-blog","tag-agentes-de-ia","tag-integraciones","tag-mcp","tag-model-context-protocol","tag-whatsapp-business"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Qu\u00e9 es MCP (Model Context Protocol) y c\u00f3mo conecta IA con WhatsApp en 2026<\/title>\n<meta name=\"description\" content=\"MCP es el protocolo abierto que conecta agentes de IA (Claude, ChatGPT, Cursor) con aplicaciones reales como WhatsApp Business. Qu\u00e9 es, c\u00f3mo funciona y por qu\u00e9 cambia el juego.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Qu\u00e9 es MCP (Model Context Protocol) y c\u00f3mo conecta IA con WhatsApp en 2026\" \/>\n<meta property=\"og:description\" content=\"MCP es el protocolo abierto que conecta agentes de IA (Claude, ChatGPT, Cursor) con aplicaciones reales como WhatsApp Business. Qu\u00e9 es, c\u00f3mo funciona y por qu\u00e9 cambia el juego.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/\" \/>\n<meta property=\"og:site_name\" content=\"Aurora Inbox\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=100089808166715\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-02T14:00:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.aurorainbox.com\/wp-content\/uploads\/2025\/01\/Datos-Automotriz-3.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"780\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"alejandro\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@aurorainbox\" \/>\n<meta name=\"twitter:site\" content=\"@aurorainbox\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"alejandro\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is MCP (Model Context Protocol) and how will AI connect with WhatsApp in 2026?","description":"MCP is the open protocol that connects AI agents (Claude, ChatGPT, Cursor) with real-world applications like WhatsApp Business. What it is, how it works, and why it&#039;s a game-changer.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/","og_locale":"en_US","og_type":"article","og_title":"Qu\u00e9 es MCP (Model Context Protocol) y c\u00f3mo conecta IA con WhatsApp en 2026","og_description":"MCP es el protocolo abierto que conecta agentes de IA (Claude, ChatGPT, Cursor) con aplicaciones reales como WhatsApp Business. Qu\u00e9 es, c\u00f3mo funciona y por qu\u00e9 cambia el juego.","og_url":"https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/","og_site_name":"Aurora Inbox","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=100089808166715","article_published_time":"2026-05-02T14:00:00+00:00","og_image":[{"width":1080,"height":780,"url":"https:\/\/www.aurorainbox.com\/wp-content\/uploads\/2025\/01\/Datos-Automotriz-3.jpg","type":"image\/jpeg"}],"author":"alejandro","twitter_card":"summary_large_image","twitter_creator":"@aurorainbox","twitter_site":"@aurorainbox","twitter_misc":{"Written by":"alejandro","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/#article","isPartOf":{"@id":"https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/"},"author":{"name":"alejandro","@id":"https:\/\/3.94.236.79\/#\/schema\/person\/cab6aa1a99141147753f3471a570dff5"},"headline":"Qu\u00e9 es MCP (Model Context Protocol) y c\u00f3mo conecta IA con WhatsApp en 2026","datePublished":"2026-05-02T14:00:00+00:00","mainEntityOfPage":{"@id":"https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/"},"wordCount":1249,"commentCount":0,"publisher":{"@id":"https:\/\/3.94.236.79\/#organization"},"keywords":["Agentes de IA","Integraciones","MCP","Model Context Protocol","WhatsApp Business"],"articleSection":["Blog"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/","url":"https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/","name":"What is MCP (Model Context Protocol) and how will AI connect with WhatsApp in 2026?","isPartOf":{"@id":"https:\/\/3.94.236.79\/#website"},"datePublished":"2026-05-02T14:00:00+00:00","description":"MCP is the open protocol that connects AI agents (Claude, ChatGPT, Cursor) with real-world applications like WhatsApp Business. What it is, how it works, and why it&#039;s a game-changer.","breadcrumb":{"@id":"https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/3.94.236.79\/2026\/05\/02\/que-es-mcp-whatsapp\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.aurorainbox.com\/"},{"@type":"ListItem","position":2,"name":"Qu\u00e9 es MCP (Model Context Protocol) y c\u00f3mo conecta IA con WhatsApp en 2026"}]},{"@type":"WebSite","@id":"https:\/\/3.94.236.79\/#website","url":"https:\/\/3.94.236.79\/","name":"Aurora Inbox","description":"The best artificial intelligence agent","publisher":{"@id":"https:\/\/3.94.236.79\/#organization"},"alternateName":"Aurora Inbox","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/3.94.236.79\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/3.94.236.79\/#organization","name":"Aurora Inbox","url":"https:\/\/3.94.236.79\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/3.94.236.79\/#\/schema\/logo\/image\/","url":"https:\/\/www.aurorainbox.com\/wp-content\/uploads\/2024\/01\/BRANDMARK-Gray80x80.png","contentUrl":"https:\/\/www.aurorainbox.com\/wp-content\/uploads\/2024\/01\/BRANDMARK-Gray80x80.png","width":81,"height":81,"caption":"Aurora Inbox"},"image":{"@id":"https:\/\/3.94.236.79\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/profile.php?id=100089808166715","https:\/\/x.com\/aurorainbox","https:\/\/www.instagram.com\/aurorainboxlatam\/","https:\/\/www.youtube.com\/@aurorainbox"]},{"@type":"Person","@id":"https:\/\/3.94.236.79\/#\/schema\/person\/cab6aa1a99141147753f3471a570dff5","name":"Alexander","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/3.94.236.79\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/da3b787e0efd5514e93ef918069c677c2a2dd12bf6a91634804bd4e2632bebee?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/da3b787e0efd5514e93ef918069c677c2a2dd12bf6a91634804bd4e2632bebee?s=96&d=mm&r=g","caption":"alejandro"},"sameAs":["https:\/\/ww3.aurorainbox.com"]}]}},"_links":{"self":[{"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/posts\/38975","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/comments?post=38975"}],"version-history":[{"count":1,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/posts\/38975\/revisions"}],"predecessor-version":[{"id":38995,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/posts\/38975\/revisions\/38995"}],"wp:attachment":[{"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/media?parent=38975"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/categories?post=38975"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.aurorainbox.com\/en\/wp-json\/wp\/v2\/tags?post=38975"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}