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 the default ChatGPT, Gemini and Perplexity analysis matrix. Add scoped coverage when the project requires it.

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

27 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
  • naia_index_list_studies

    List measured and published naia Index studies

    free
  • naia_index_get_study

    Read a published study snapshot by slug

    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

AI coverage

Each AI has a role in your project.

naia offers analysis in ChatGPT, Gemini and Perplexity, Google Search with AI Overviews collection and additional options for each project. DeepSeek, GPT and Gemini support chat and content creation. Kimi and GLM (Z.ai) can be evaluated on request.

Visibility analysis

  • ChatGPT
  • Gemini
  • Perplexity

Engines included by default to measure brand mentions, citations and presence in AI answers.

More engines on request

  • Claude
  • Grok

Claude requires explicit approval. Grok can be evaluated for your project; it is outside Autopilot's default selection.

Search and AI experiences

  • Google Search with AI Overviews
  • Meta AI on WhatsApp

Google AI Overviews has complementary collection. The Meta integration uses models through APIs according to configuration; it does not establish direct capture of the WhatsApp experience.

Chat and content creation

  • DeepSeek
  • GPT (OpenAI)
  • Gemini

DeepSeek, GPT and Gemini are used according to the workflow and configuration. Generating with DeepSeek does not include monitoring your brand in that model.

Custom integrations

  • Kimi
  • GLM (Z.ai)

Kimi and GLM (Z.ai) are options for evaluation on request. They are not yet integrated into naia's analysis workflows; inclusion requires technical and commercial validation.

Main naia paths

naia

Start with what you want to solve. Complete navigation continues just below, without closed menus.

  1. 01Explore the platform
  2. 02Evaluate my website
  3. 03Explore the naia Index
  4. 04Compare tools
  5. 05View plans and pricing

Explore naia

Find products, tools, research, and company information in one clear navigation.

Platform

  • AI Agents
  • Execution Plan
  • Content Generation
  • Content Humanization
  • Brand Safety
  • ChatGPT Ads
  • Technical Verification
  • Presentation Mode
  • CMS Export
  • AI Shopping

Tools and decisions

  • Free tools
  • Free AI Readiness Check
  • Free AI content detector
  • Extrato da IA
  • Garimpo de Ads
  • Antihallucination
  • Free llms.txt generator
  • GEO tools guide
  • Direct comparisons
  • Product alternatives
  • GEO tool pricing
  • GEO tools for SMBs
  • GEO tools for agencies
  • Free without a card

naia Index

  • Explore all rankings
  • naia Index methodology
  • GPT Ads: who advertises inside ChatGPT

Resources

  • Blog
  • WordPress
  • AI model updates
  • FAQ

Company

  • About Us
  • Press
  • Contact
  • Media kit
  • Commercial deck

Editorial research

Decision guides show sources, verification dates, and limits. Prices and capabilities may change.

Open the guides

Developers

  • API documentation
  • MCP server
  • GEO API by consultation
  • Public naia Index data
  • Official information for AI
  • Manage API keys
  • GitHub
  • RSS Feed

Legal

  • Privacy
  • Terms of Service
  • Cookies
  • LGPD Center
NVIDIA Inception Program

© 2026 Imasters For Business LTDA. All rights reserved.

Brazil