home / mcp / vincent says mcp server
Provides an MCP server to ask Vincent yes/no questions and receive responses.
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.
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.
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-saysTo 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": []
}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.
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 devAsk Vincent a question and obtain a yes or no answer.
Retrieve personalized greetings from Vincent.