Ayoa MCP Server
Exposes Ayoa mindmapping services as MCP tools, enabling mindmap creation, listing, OPML import, and presenter slide capture.
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:
- Node.js 22 and 24 test matrix;
npm cireproducible installation;- Node.js tests;
- JavaScript syntax checks;
- MCP Inspector
tools/listcontract verification; - high-severity production dependency audit;
- 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_mindmaplist_mindmapsget_mindmapimport_opmllist_presenter_slidesprepare_presentercapture_slidesmake_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
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.