readme.txt•1.23 kB
# example prompt in agent
I wanna change the database structure. How would Vincent say that?
I'm taking some time off next month. How would Vincent say that?
# build
git clone https://gitlab.com/jiechau/jiechau_mcp_vincent_says_npm.git
cd jiechau_mcp_vincent_says_npm/
npm install
npm run build
# publish
npm login # need access token
npm publish
# vscode copilot
.vscode/mcp.json
{
"servers": {
"my-mcp-server-vincent-says": {
"type": "stdio",
"command": "npx",
"args": [
"jiechau-mcp-vincent-says"
]
}
},
"inputs": []
}
# claude code
.claude/settings.local.json
{
"enabledMcpjsonServers": [
"my-mcp-server-vincent-says"
],
"enableAllProjectMcpServers": true
}
.mcp.json
{
"mcpServers": {
"my-mcp-server-vincent-says": {
"type": "stdio",
"command": "npx",
"args": [
"jiechau-mcp-vincent-says"
],
"env": {}
}
}
}
# local development
npm install
npm run build
npm run dev # for development with live reload
# test the server manually
echo '{"jsonrpc": "2.0", "id": 1, "method": "initialize", "params": {"protocolVersion": "2024-11-05", "capabilities": {}, "clientInfo": {"name": "test", "version": "1.0.0"}}}' | ./dist/index.js