Ayoa MCP Server

Ayoa MCP Server

Exposes Ayoa mindmapping services as MCP tools, enabling mindmap creation, listing, OPML import, and presenter slide capture.

Category
Visit Server

README

Ayoa MCP Server

Standalone Node.js MCP server exposing Ayoa mindmapping services as tools.

Repository: https://github.com/viniciusfs76/ayoa-mcp-server

DevOps pipeline

GitHub Actions is configured in .github/workflows/ci.yml.

On every push or pull request to main, it runs:

  1. Node.js 22 and 24 test matrix;
  2. npm ci reproducible installation;
  3. Node.js tests;
  4. JavaScript syntax checks;
  5. MCP Inspector tools/list contract verification;
  6. high-severity production dependency audit;
  7. package integrity check after tests pass.

The pipeline does not invoke Ayoa operations and does not require cookies. This avoids creating maps or artifacts in a real account.

Run the same checks locally:

npm ci
npm test
npm run verify:mcp
node --check server.js
node --check tools.js
node --check ayoa-client.js
npm audit --omit=dev --audit-level=high

Tools

  • create_mindmap
  • list_mindmaps
  • get_mindmap
  • import_opml
  • list_presenter_slides
  • prepare_presenter
  • capture_slides
  • make_video

Installation

npm install

Termux prerequisites:

command -v node
command -v ffmpeg
ls "$PREFIX/lib/chromium/headless_shell"

The server uses Node.js ESM, @modelcontextprotocol/sdk, zod, and puppeteer-core.

Authentication

Ayoa operations use a local EditThisCookie JSON file. Never put cookie contents in MCP arguments, GitHub, or chat.

export AYOA_COOKIES_FILE="$HOME/.cookiesAyoa-domain.json"
chmod 600 "$AYOA_COOKIES_FILE"

The browser login sequence is:

www.ayoa.com → inject cookies → app.ayoa.com → operation

If the session redirects to auth.ayoa.com/login, the tool returns a clear authentication error.

Run locally

node server.js

Example MCP client configuration:

{
  "mcpServers": {
    "ayoa": {
      "command": "node",
      "args": ["/absolute/path/to/ayoa-mcp-server/server.js"],
      "env": {
        "AYOA_COOKIES_FILE": "/absolute/path/to/ayoa-cookies.json"
      }
    }
  }
}

Inspector

Interactive Inspector:

npm run inspector

Headless tools-list verification:

npx @modelcontextprotocol/inspector --cli node server.js --method tools/list

Or:

npm run verify:mcp

Ayoa operation contracts

create_mindmap uses the authenticated Ayoa UI at /mindmaps/new.

list_mindmaps reads mind-map links from the authenticated dashboard. No undocumented REST list endpoint is invented.

import_opml uses the known Ayoa v2 sequence:

POST /v2/uploads
upload to presigned URL
POST /v2/import/text
poll GET /v2/import-jobs
paperIds[0] → mindmapId

list_presenter_slides, prepare_presenter, and capture_slides use the Presenter DOM and wait for the selected slide to settle before capturing.

make_video encodes slide-*.png files to H.264 MP4 with FFmpeg.

Design boundaries

  • Standalone Node project;
  • no dependency on NotebookLM MCP;
  • no NotebookLM tools or nlm_* names;
  • no destructive delete tool exposed;
  • CI uses no Ayoa credentials;
  • real account operations remain opt-in through MCP tool calls.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured