← Tendabot MCP
Knowledge

Teach the bot from the conversation you are already in.

Nine tools. The one that earns its keep is delete_knowledge: when a bot gives a wrong answer, the fix is almost always removing a stale chunk, not adding a new one on top.

Things you can just ask

Real prompts, not pseudo-code. Claude picks the tools itself.

The bot keeps quoting our old 30-day returns policy. Find that chunk and delete it, then add the 60-day one.
Crawl our shipping page and add it to the store bot’s knowledge.
What does the bot currently know about warranties? Show me the actual chunks.
Turn this Slack thread into a help centre article and publish it.
Re-crawl the site — we changed the pricing page this morning.

The 9 tools behind it

ToolNeedsWhat it does
list_knowledgereadEverything a bot has been taught, by source.
add_knowledgewriteTeach the bot a new fact, policy or document.
delete_knowledgewriteRemove one chunk by id — the fix for an answer that went stale.
list_knowledge_chunksreadThe retrievable pieces, so you can find the one that is wrong.
add_websitewriteCrawl a URL and turn its pages into citable knowledge.
resync_websitewriteRe-crawl after you have changed the site.
list_help_articlesreadPublished help centre articles.
upsert_help_articlewriteWrite an article. It serves readers for SEO and teaches the bot at the same time.
reorder_help_articleswritePull the articles that matter to the top.

read works with any key. write is refused unless the key allows it — the server checks before the tool runs, so a read-only key genuinely cannot change anything.

What it will not do

Worth knowing before you wire it into something that matters.

  • Adding a fact does not remove a contradicting one. Two answers in the knowledge base means the bot picks one.
  • A crawl takes time on a large site; the tool queues it rather than blocking.
  • File uploads (PDF, CSV) go through the console — MCP takes text and URLs.

Also over MCP

Ready when you are

Your first agent, answering in five minutes.