@dennisk2025/random-motivational-quote
v1.0.0
Published
Fetches a random motivational quote to inspire and energize users.
Readme
random-motivational-quote
Fetches a random motivational quote to inspire and energize users via the MCP (Model Context Protocol) framework.
Features
- Returns a random motivational quote and its author from zenquotes.io.
- Designed to work seamlessly with Claude Desktop and other MCP clients.
Installation
Using npx (recommended)
npx @dennisk2025/random-motivational-quoteOr install globally
npm install -g @dennisk2025/random-motivational-quoteThen run:
random-motivational-quoteAdding to Claude Desktop
Open your Claude Desktop config file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
- macOS:
Add the following JSON to your
mcpServerssection:
{
"mcpServers": {
"random-motivational-quote": {
"command": "npx",
"args": ["@dennisk2025/random-motivational-quote"]
}
}
}- Restart Claude Desktop to apply changes.
Usage Example
Once added, the following tool will be available in Claude Desktop and compatible clients:
Tool: get_random_motivational_quote
- Description: Returns a random motivational quote including the quote text and author.
- Parameters: (none)
Example Call
{
"tool": "get_random_motivational_quote",
"parameters": {}
}Example Response
{
"quote": "Act as if what you do makes a difference. It does.",
"author": "William James"
}Available Tools
| Tool Name | Description | Parameters | |----------------------------------|------------------------------------------------------------|------------| | get_random_motivational_quote | Returns a random motivational quote including author. | (none) |
