Show HN: CVibe – The NPM of Prompts(cvibe.dev)
cvibe.dev
Show HN: CVibe – The NPM of Prompts
https://cvibe.dev/
8 comments
I’d recommend adding some type of model-based rating system, considering the variability of outcomes when using the same prompt with various LLM’s, would be useful to see some indicator of how well the prompt performed (based on user submitted ratings) with Claude code vs the experience of someone using the same prompt with Gemini, or Qwen, etc…
im using vs code,
opened mcp.json file and put inside:
{ "mcpServers": { "cvibe": { "command": "npx", "args": [ "mcp-remote", "https://cvibe.dev" ] } } }
its not working, showing not connected to server, can you help?
opened mcp.json file and put inside:
{ "mcpServers": { "cvibe": { "command": "npx", "args": [ "mcp-remote", "https://cvibe.dev" ] } } }
its not working, showing not connected to server, can you help?
You are missing the /mcp int he end of the url. it needs to be like this:
{
"mcpServers": {
"cvibe": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.cvibe.dev/mcp"
]
}
}
}
let me know if you need anymore help :)
let me know if you need anymore help :)