- Home
- MCP servers
- Vincent Says
Vincent Says
- javascript
0
GitHub Stars
javascript
Language
4 months ago
First Indexed
3 weeks 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": {
"jiechau-jiechau_mcp_vincent_says_npm": {
"command": "npx",
"args": [
"jiechau-mcp-vincent-says"
]
}
}
}You can run a lightweight MCP server that answers yes/no questions about Vincent. It exposes a simple interface you can plug into MCP clients, so you can ask Vincent questions and get quick, deterministic yes or no responses, along with personalized greetings.
How to use
You connect to the Vincent Says MCP server through an MCP-compatible client. The server is exposed as a local process you run and communicate with via standard input/output. Practical use cases include asking Vincent whether something is feasible and receiving a yes or no answer, or requesting personalized greetings.
How to install
Prerequisites: you need Node.js and npm installed on your machine.
# Install the Vincent Says MCP server globally
npm install -g jiechau-mcp-vincent-says
# Or use with npx
npx jiechau-mcp-vincent-says
Additional setup notes
To use with IDEs or clients that support MCP, you typically register a stdio-based server configuration that runs the MCP server via npx and passes the required arguments.
{
"servers": {
"my-mcp-server-vincent-says": {
"type": "stdio",
"command": "npx",
"args": [
"jiechau-mcp-vincent-says"
]
}
},
"inputs": []
}
Notes on usage patterns
The server provides two core tools: asking Vincent for yes/no answers and generating personalized greetings. Use the stdio client configuration above to wire it into your tooling. You can reuse this setup across IDEs that support MCP integration.
Development
If you want to contribute or run a local development instance, follow these steps to clone, install, build, and run in development mode.
# Clone the project
git clone https://gitlab.com/jiechau/jiechau_mcp_vincent_says_npm.git
cd jiechau_mcp_vincent_says_npm/
# Install dependencies
npm install
# Build the project
npm run build
# Run in development mode with live reload
npm run dev
License
MIT
Author: jiechau (jiechau@gmail.com)
Available tools
ask_vincent
Ask Vincent a question and obtain a yes or no answer.
greeting_resources
Retrieve personalized greetings from Vincent.