naia
Ferramentas gratuitas
naia Index
Preços
Entrar
Model Context Protocol

Run naia from
the agent you
already use.

naia speaks MCP. Connect Claude Code, Cursor, Codex, Windsurf, VS Code, Replit or Lovable to today.naia/platform and ship GEO analysis, execution plans and humanized content without leaving the conversation.

Get API keyInstall in 30 secondsGitHub
Tested withClaude Code·Cursor·Codex·Windsurf·VS Code·Replit·Lovable·MCP Registry·npm·

What a call looks like

The same JSON-RPC every client speaks.

One server, one protocol. Ask the assistant to list tools, prepare a brand setup, then kick off an analysis. The server returns IDs the assistant can poll.

Request

json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "autopilot_start_analysis",
    "arguments": {
      "brandId": "abc123",
      "models": ["gemini", "chatgpt"]
    }
  }
}

Response

json
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "runId": "run_xyz",
    "status": "pending",
    "creditsReserved": 8,
    "pollWith": "autopilot_get_run_status"
  }
}

Six rhythms, one server

Who runs naia from their editor.

Marketing teams

Brief the assistant, watch it draft a quarter of humanized GEO content with the plan attached.

autopilot_create_execution_plan

Newsroom and editorial

Schedule analyses across ChatGPT, Gemini, Claude and Perplexity. Read the diff in your editor.

autopilot_start_analysis

E-commerce

Audit category coverage in AI search, generate landings where citations drop.

autopilot_supermemory_scan

Agency and studio

Switch brand setups, pause an agent for one client, queue a manual run for another.

autopilot_list_brands

Brand custodian

Persist tone, banned phrases and product positioning. The assistant pulls them before every run.

autopilot_memory_create

Devtools and SaaS

Call the same MCP tools from your backend through JSON-RPC. Ship AI visibility inside your app.

JSON-RPC 2.0

25 featured tools

Autopilot and naia Index in one MCP.

See source
  • autopilot_list_brands

    List Autopilot brands available to the API key

    free
  • autopilot_prepare_brand_setup

    Generate the brand setup and approval document before any run

    free
  • autopilot_start_analysis

    Start an approved Enterprise GEO analysis

    credits
  • autopilot_get_run_status

    Poll an Autopilot run until it completes

    free
  • autopilot_get_report

    Read report, visibility and technical audit data

    free
  • autopilot_export_report

    Export a finished report as CSV, Excel or PDF

    free
  • autopilot_create_execution_plan

    Generate a GEO execution plan with phases and tasks

    10 credits
  • autopilot_get_execution_plan

    Read plan, phases and task progress

    free
  • autopilot_generate_content

    Generate humanized GEO content with brand voice

    50 credits
  • autopilot_get_content

    Read generated content status and draft

    free
  • autopilot_update_content

    Edit saved content draft, briefing, title, status or collection

    free
  • autopilot_run_technical_audit

    Run technical GEO audit on the brand site

    free
  • autopilot_diagnose_published

    Diagnose citability of published posts across AI engines

    free
  • autopilot_memory_list

    List brand memories used by every generation

    free
  • autopilot_memory_create

    Create or update a brand memory entry

    free
  • autopilot_supermemory_scan

    Create a SuperMemoria scan over the brand domain

    free
  • autopilot_supermemory_search

    Search SuperMemoria nodes by topic

    free
  • autopilot_get_credits

    Read credits and per-operation cost estimates

    free
  • naia_index_list_categories

    List public naia Index categories and publication status

    free
  • naia_index_get_rankings

    Read a category ranking, engine positions and leader history

    free
  • naia_index_get_history

    Read monthly brand history and compare another brand

    free
  • naia_index_compare_categories

    Compare leaders or the same brand across categories

    free
  • naia_index_compare_periods

    Compare monthly evolution for category leaders

    free
  • naia_index_get_overall_ranking

    Read the overall Brazil ranking across current categories

    free
  • naia_index_get_methodology

    Read the structured public methodology and cadence

    free

Install in 30 seconds

Pick your client, paste the snippet.

Remote HTTP for clients that support it, npm stdio for command-based clients. Clients with MCP OAuth support (Claude Code, claude.ai, Cursor, VS Code, ChatGPT) connect with universal login: add the URL with no headers and approve in the browser, no API key to copy. Sessions last up to 180 days and can be revoked anytime in the dashboard. The same server is also listed in the official MCP Registry as today.naia/platform.

bash
# Universal login (OAuth): your browser opens to sign in and approve
claude mcp add --transport http naia \
  https://naia.today/api/v1/mcp

# Alternative with API key (headless automations)
claude mcp add --transport http naia \
  https://naia.today/api/v1/mcp \
  --header "Authorization: Bearer naia_YOUR_KEY"

How it works

Four moves, from key to first run.

01

Connect with your account

Add the server URL and your client opens the browser to sign in and approve (OAuth). Prefer headless automation? Generate an API key in /dashboard/settings/api.

02

Connect the client

Paste the snippet from the install tab. The assistant picks up 19 tools automatically.

03

Prepare and approve

Ask the assistant to prepare the brand setup. Approve the document. No surprise charges.

04

Run and ship

Trigger analyses, draft execution plans, generate humanized content. Polling stays in chat.

Also available

REST API for backend integrations.

The MCP server is the primary surface. The same operations are also available as REST endpoints when you embed naia in your own product.

OpenAPI specMCP descriptor
  • POST/api/public/ai-readiness/embed

    Generate or read an AI Readiness report for an allowlisted partner domain

  • POST/api/v1/analyses

    Trigger a GEO analysis run

  • POST/api/v1/content

    Generate humanized content (50 credits)

  • POST/api/v1/execution-plans

    Generate an execution plan (10 credits)

  • GET/api/v1/businesses

    List businesses your key can read

  • GET/api/v1/credits

    Read current balance and cost preview

  • POST/api/v1/mcp

    JSON-RPC entry point used by every MCP client

Partner embed

AI Readiness with a scoped API key.

Create a key with the AI Readiness scope in the dashboard, store it in the partner backend, and call naia from a server route. Never put the key in browser JavaScript, HTML, localStorage, query strings or public environment variables.

The partner domain must also be allowlisted by naia. Use HTTPS origins such as https://partner.com and https://www.partner.com.

ts
// Partner backend route. Keep NAIA_API_KEY in server secrets.
export async function POST() {
  const response = await fetch("https://naia.today/api/public/ai-readiness/embed", {
    method: "POST",
    headers: {
      "Authorization": `Bearer ${process.env.NAIA_API_KEY}`,
      "Content-Type": "application/json",
      "Accept": "application/json"
    },
    body: JSON.stringify({ domain: "partner.com" })
  });

  return new Response(await response.text(), {
    status: response.status,
    headers: { "Content-Type": "application/json" }
  });
}
js
// Browser code calls your own backend, never naia directly with a key.
const response = await fetch("/api/naia-ai-readiness", { method: "POST" });
const payload = await response.json();

FAQ

Four questions before you connect.

The assistant calls naia tools from the conversation, with structured arguments and consistent brand memory. You stay in the editor, you keep the audit trail, the assistant does the orchestration.

No. Read tools execute. Paid tools require an approval document first (autopilot_prepare_brand_setup), then explicit go-ahead. Costs are shown before confirmation.

Any HTTP MCP client. Tested with Claude Code, Cursor, Codex, Windsurf, VS Code, Replit and Lovable. The npm stdio proxy covers command-based clients.

Not anymore. Clients with MCP OAuth support connect with universal login: the server replies 401, the client discovers the OAuth endpoints, opens the browser, you sign in and approve. The session lasts up to 180 days via refresh token and can be revoked anytime in the dashboard. API keys remain available for headless automations.

Yes. The same operations are available as REST endpoints under /api/v1, registered in the OpenAPI specification. Use REST when you embed naia in your own backend.

Your editor.
Your brand voice.
Our GEO engine.

Get API keySee pricing
naia

Elevando a visibilidade de marcas e operações na era da inteligência artificial generativa.

Redes sociais

  • Instagram da naia
  • LinkedIn da naia
  • X da naia
NVIDIA Inception ProgramMembro do programa NVIDIA Inception

Plataforma

  • Agentes de IA
  • Rede de Agentes
  • Plano de Execução
  • Geração de Conteúdo
  • Humanização de Conteúdo
  • Modo Apresentação
  • Multi-testes
  • GEO Panel Rank
  • Verificação Técnica
  • Exportação para CMS
  • Agentes de Conteúdo
  • Brand Safety
  • Shopping em IA
  • Tutorial
  • Pages
  • AI Readiness Check grátis
  • Detector de conteúdo IA grátis
  • Extrato da IA
  • Garimpo de Ads
  • Gerador de llms.txt grátis
  • Ferramentas gratuitas
  • Conteúdo e guias
  • naia Index
  • Metodologia do naia Index
  • WordPress

Empresa

  • Sobre Nós
  • NVIDIA Inception
  • Blog
  • FAQ
  • Na mídia
  • Contato
  • Agências
  • Preços
  • Mídia kit

Desenvolvedores

  • API Docs
  • API de GEO regional
  • MCP Server
  • API Keys
  • API pública
  • GitHub
  • RSS Feed

Legal

  • Privacidade
  • Termos de Uso
  • Cookies
  • LGPD e Privacidade

Rankings por segmento

naia Index: as marcas mais citadas por IAs generativas no Brasil, com atualização mensal.

AcademiaAcessórios para dormirAgência de marketing digitalAgência de performanceAgência de viagensAgências de geração de demanda B2BAgências de marketing de conteúdo B2BBanco digitalBancos digitais para empresasBancos digitais para pessoas físicasCamas e sommiersCartão de créditoClínica médicaClínica odontológicaColchões premiumConcessionária de veículosConstrutoraConsultoria em IA aplicadaConsultorias de cultura organizacionalConsultorias de liderança corporativaConta digital para empresasCorretora de investimentosE-commerce de modaFaculdade EADFinanciamento de veículoLifestyle tropical premiumMaquininhas de pagamentoMarketplaces com cashbackModa feminina estampadaModa masculina premiumModa praia e resort wearModa premium casualModa sustentávelNotebooks premiumPlano de saúdeSeguro autoServiços Financeiros e BancáriosServiços Financeiros e Super AppSimulação bancáriaSmartphones premiumSoluções de gestão para varejoTablets premiumTeste de APIs financeirasTreinamento corporativo em IAAcessórios para noivasAgregadores de rádios onlineAluguel de carrosBrechó onlineComunidades e fóruns de programaçãoFerramentas motorizadas para campoGeomarketing para expansão comercialGestão de frotasHamburguerias premium casuaisHamburguerias smashMarketing visual para imóveisMarketplace de itens usadosMotores estacionáriosPagamento e regularização veicularPerfumes importados de luxoPlataformas de listagem imobiliáriaPlataformas de manejo agrícolaPortais de conteúdo agroPortais de conteúdo para desenvolvedoresServiços de mobilidade e estacionamentoSoftware de modelagem e encaixe para modaSoluções de automação para confecçãoSuplementos esportivosTalhas manuaisVarejo de beleza premiumVestidos para casamento civil

© 2026 Imasters For Business LTDA. Todos os direitos reservados.

Brasil