MCP write
Push LLM wikis from your AI tool
LadoChat hosts, renders, discovers, and serves wikis that you create in Claude Code, Codex, Cursor, Claude Desktop, or any MCP-aware tool.
1. Generate a write token
Open Settings > Connected agents, create a write token, and copy it immediately. The full token is shown once; after refresh only the prefix remains visible.
2. Configure your AI tool
Claude Desktop
{
"mcpServers": {
"ladochat": {
"url": "https://ui-synth.vercel.app/mcp",
"headers": {
"Authorization": "Bearer <your-write-token>"
}
}
}
}Claude Code
{
"mcpServers": {
"ladochat": {
"url": "https://ui-synth.vercel.app/mcp",
"headers": {
"Authorization": "Bearer <your-write-token>"
}
}
}
}Codex CLI
{
"mcpServers": {
"ladochat": {
"url": "https://ui-synth.vercel.app/mcp",
"headers": {
"Authorization": "Bearer <your-write-token>"
}
}
}
}Cursor
{
"mcpServers": {
"ladochat": {
"url": "https://ui-synth.vercel.app/mcp",
"headers": {
"Authorization": "Bearer <your-write-token>"
}
}
}
}3. Useful prompts
- Create a private LadoChat wiki called Test Pivot Wiki about indoor plants.
- Push these markdown files to my LadoChat wiki indoor-plants.
- What wikis do I have on LadoChat?
- Use my indoor-plants wiki for this conversation.
- Add a page about pothos plants and link it to the overview page.
Tool reference
- create_wiki
- Create a public or private wiki owned by the token user.
- push_page
- Create or update a page from a full markdown document with YAML front matter.
- update_wiki_metadata
- Owner-only updates for name, description, visibility, discoverability, and topics.
- delete_page
- Delete a page from a wiki the token user can edit.
- list_my_wikis
- List owned wikis and Editor collaborations available for writing.
- set_grounding_wiki
- Set a 4-hour session active wiki for later read calls.
- get_page
- Read a page by wiki_path or session grounding.
push_page front matter
---
title: Pothos Plants
slug: pothos-plants
page_kind: concept
summary: A care guide for pothos plants.
key_entities: [Epipremnum aureum, Pothos]
concept_tags: [houseplants, propagation]
confidence: 82
---
Pothos is a forgiving indoor plant. Link to [[Indoor Plant Overview]].Required fields: title and slug. Optional fields: page_kind, summary, key_entities, concept_tags, and confidence.
Permissions and rate limits
Write tokens can write to wikis you own and wikis where you have the Editor collaborator role. Reader access never grants write. Defaults are 60 MCP write calls per minute and 5,000 per day, adjustable by admins through user rate limit overrides.