Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Connects AI assistants to TextView for persistent memory, enabling saving, searching, and retrieving notes across sessions.

README.md

textview-mcp

<p align="center"> <strong>Let AI remember everything for you.</strong> </p>

<p align="center"> <a href="https://www.npmjs.com/package/textview-mcp"><img src="https://img.shields.io/npm/v/textview-mcp" alt="npm version"></a> <a href="https://www.npmjs.com/package/textview-mcp"><img src="https://img.shields.io/npm/dm/textview-mcp" alt="npm downloads"></a> <a href="https://smithery.ai/server/textview-mcp"><img src="https://smithery.ai/badge/textview-mcp" alt="Smithery"></a> <a href="./LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue" alt="license"></a> </p>

<p align="center"> <a href="#quick-start">Quick Start</a> · <a href="#tools">Tools</a> · <a href="#use-cases">Use Cases</a> · <a href="./README_CN.md">中文</a> · <a href="./README_JA.md">日本語</a> · <a href="./README_KO.md">한국어</a> </p>

---

textview-mcp is an MCP server that connects AI assistants (Claude, Cursor, Windsurf, etc.) to TextView — a cloud-based note-taking platform designed for AI agents.

Think of it as persistent memory for your AI: meeting notes, research findings, code snippets, daily journals — anything your AI generates can be saved, searched, and retrieved across sessions.

Why?

AI conversations are ephemeral. You have a great brainstorming session with Claude, close the window, and it's gone. textview-mcp solves this:

  • AI writes, you review — Let your AI agent save documents directly. Review them later on textview.cn from any device.
  • Cross-session memory — Claude in one conversation can read what Claude in another conversation wrote.
  • Cross-tool sync — Save from Cursor, read from Claude Desktop, review on your phone.
  • Rich formatting — Documents are stored as rich text (HTML), not plain text.

Quick Start

1. Get your API token

Sign up at textview.cn, click your avatar → API Token → Generate.

2. Configure your AI tool

<details> <summary><strong>Claude Desktop</strong></summary>

Edit claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "textview": {
      "command": "npx",
      "args": ["-y", "textview-mcp"],
      "env": {
        "TEXTVIEW_TOKEN": "tv_your_token_here"
      }
    }
  }
}

Restart Claude Desktop after saving.

</details>

<details> <summary><strong>Cursor</strong></summary>

Create or edit .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "textview": {
      "command": "npx",
      "args": ["-y", "textview-mcp"],
      "env": {
        "TEXTVIEW_TOKEN": "tv_your_token_here"
      }
    }
  }
}

</details>

<details> <summary><strong>Windsurf</strong></summary>

Go to Settings → MCP and add:

{
  "mcpServers": {
    "textview": {
      "command": "npx",
      "args": ["-y", "textview-mcp"],
      "env": {
        "TEXTVIEW_TOKEN": "tv_your_token_here"
      }
    }
  }
}

</details>

<details> <summary><strong>Claude Code</strong></summary>

claude mcp add textview -- npx -y textview-mcp

Then set the environment variable TEXTVIEW_TOKEN=tv_your_token_here.

</details>

3. Start using it

Just ask your AI naturally:

"Save this conversation as a document called 'Meeting Notes March 11'"

"Show me my recent documents"

"Find my notes about the API redesign"

Tools

| Tool | Description | |------|-------------| | save_document | Save a new document to TextView | | list_documents | List documents (with optional search) | | get_document | Retrieve a document by ID | | update_document | Update an existing document's title or content |

Use Cases

Daily Journal

"Save a journal entry for today: summarize what we discussed and the decisions we made."

Research Assistant

"Save this research summary about MCP protocols to my notes."

Code Documentation

"Document the architecture of this project and save it to TextView."

Meeting Notes

"We just finished our sprint planning. Save the action items as a document."

Cross-Session Context

"Check my notes — did we decide on PostgreSQL or MySQL last week?"

Requirements

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | TEXTVIEW_TOKEN | Yes | API token (starts with tv_), generated at textview.cn |

How It Works

Your AI Tool (Claude, Cursor, etc.)
    ↕ MCP Protocol (stdio)
textview-mcp (this package)
    ↕ HTTPS
TextView Cloud API
    ↕
Your Documents (accessible from any device)

Development

git clone https://github.com/mrliuzhiyu/textview-mcp.git
cd textview-mcp
npm install
npm run dev

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT

---

<p align="center"> Built by <a href="https://textview.cn">TextView</a> — AI-native note-taking for the agent era. </p>

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Vector & Memory servers.