- Home
- MCP servers
- Phrases
Phrases
- typescript
2
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"ronniemh-phrases-mcp-server": {
"command": "node",
"args": [
"/RUTA_ABSOLUTA_A/phrases/build/index.js"
]
}
}
}This MCP server provides a focused backend for managing inspirational phrases, enabling you to create, read, update, and delete entries while integrating smoothly with clients like Claude for Desktop. It includes a built-in MockAPI backend for development and testing, so you can prototype interactions without a production database.
How to use
You interact with the server through a local MCP client. Use the available phrases operations to manage your collection: view all phrases, find a phrase by its ID, search phrases by author name, add a new phrase, modify an existing one, or remove a phrase. These actions map directly to the MCP endpoints exposed by the server.
How to install
Prerequisites: you need Node.js and npm installed on your machine. You also need a shell or terminal to run commands.
Clone the MCP server repository and install dependencies:
How to install
# Clone the MCP server repository
git clone https://github.com/ronniemh/phrases-MCP-server.git
cd phrases-MCP-server
# Install dependencies
npm install
# Build the project
npm run build
Available tools
get-all-phrases
Retrieves all available phrases from the server.
get-phrase-by-id
Finds a phrase by its unique ID.
get-phrase-by-name
Searches phrases by author name.
create-phrase
Adds a new phrase to the collection.
update-phrase
Updates the text of an existing phrase.
delete-phrase
Removes a phrase by its ID.