All articles
GuideJune 8, 2026· 3 min read
Connect Cursor to your website feedback with MCP
The Model Context Protocol lets your editor’s agent read live project context. Here’s how to wire Vynix into Cursor or VS Code in under two minutes.
MCP is a standard way for AI clients to call tools. The Vynix MCP server exposes your projects, annotations, prompts and GitHub actions, so an agent can read feedback and act on it without copy-paste.
Generate a token
Open the MCP page in your dashboard and click Generate token. Copy it. It’s shown once.
Add the server
example
{
"mcpServers": {
"vynix": {
"command": "npx",
"args": ["-y", "@vynix/mcp-server"],
"env": {
"VYNIX_API_URL": "https://vynix.in",
"VYNIX_API_TOKEN": "<your token>"
}
}
}
}Drop that into ~/.cursor/mcp.json (or .vscode/mcp.json for VS Code), restart your editor, and ask: “List my open Vynix annotations and fix the first one.”