Labsco
MCP SERVER

Phrases MCP Server

by ronniemh

Keep a small collection of quotations the assistant can read from and write to — list them, look one up by author, edit the wording, drop it.

Summary
An agent can keep a quotations list for you and edit it in conversation.

It is a small but complete CRUD surface — read all, read by author, add, reword, delete. The store behind it is the project's own mock API, so what you put in lives with the server rather than in a database of yours.

What it is

A CRUD server over a collection of quotations. Each phrase has an id, its text and an author; storage is a mock API bundled with the project rather than a database you point it at.

What you get
  • Every phrase in the collection, returned as a list
  • One phrase fetched by its id
  • Phrases found by author name
  • A new phrase created with its text and author
  • The text of an existing phrase updated in place
  • A phrase deleted by id
Requirements

Node.js and a local build: clone the repository, npm install, npm run build, then point your client at the compiled build/index.js. No account and no key. The documentation and example prompts are in Spanish.

Setup effort

Build from source — clone the repository and build it, then point your client at the binary