Ask for retrieval first
Prompt the agent to inspect RevoGrid MCP before generating code. This reduces invented APIs and helps it start from real examples.
RevoGrid Pro MCP gives AI coding tools structured access to RevoGrid knowledge through the hosted Pro endpoint:
https://mcp.rv-grid.com/proWhen your client is configured with the Pro endpoint and a valid bearer token, agents can use Pro-only examples, advanced docs, richer feature resolution, and typed plugin context.
If you are signed in to the RevoGrid Pro portal, use the token details below directly in your MCP client:
Endpoint: https://mcp.rv-grid.com/proEmail: ***Authorization: Bearer ***Use Pro MCP when you want an AI tool to:
RevoGrid Pro users should connect to the dedicated Pro endpoint:
https://mcp.rv-grid.com/proPro access requires both:
https://mcp.rv-grid.com/proAuthorization header in the format Bearer <your-mcp-token>RevoGrid Pro MCP works best when each Pro user receives their own MCP token.
High-level flow:
MCP_AUTH_JWT_SECRET.https://mcp.rv-grid.com/pro.Authorization: Bearer <token>.https://mcp.rv-grid.com/pro to Codex, Cursor, Claude Code, or VS Code.Authorization: Bearer <your-token>.With Pro access enabled, the MCP can help the agent retrieve:
Authorization: Bearer <your-mcp-token>.claude mcp add --transport http revogrid https://mcp.rv-grid.com/proThen configure the server to send:
Authorization: Bearer <your-mcp-token>codex mcp add revogrid --url https://mcp.rv-grid.com/proThen configure the server to send:
Authorization: Bearer <your-mcp-token>{ "mcpServers": { "RevoGrid": { "url": "https://mcp.rv-grid.com/pro", "type": "http", "headers": { "Authorization": "Bearer <your-mcp-token>" } } }}{ "servers": { "RevoGrid MCP": { "url": "https://mcp.rv-grid.com/pro", "type": "http", "headers": { "Authorization": "Bearer <your-mcp-token>" } } }, "inputs": []}The best prompts tell the agent three things:
Build a Vue RevoGrid Pro pivot table. Search MCP first, use the best matching Pro example, and explain the required plugin configuration.Create a React grid with RevoGrid Pro history and validation. Use MCP docs and types before writing code.Find the best RevoGrid Pro example for advanced filter headers in Angular and adapt it to server-side filtering.Use RevoGrid Pro MCP to implement row master with nested editing. Validate the final API names against types.Check if this feature is available in Core or Pro, then recommend the best matching RevoGrid implementation path.Ask for retrieval first
Prompt the agent to inspect RevoGrid MCP before generating code. This reduces invented APIs and helps it start from real examples.
Use types as the source of truth
RevoGrid has strong typing. Ask the agent to verify plugin names, event payloads, config fields, and feature usage against RevoGrid types.
Be explicit about licensing
If your implementation is allowed to use Pro features, say so. If you need a Core-only fallback, ask for that explicitly.
Prefer examples over prose
Ask the agent to use the best matching Pro demo or guide as the starting point, then adapt it to your app.
Use MCP when implementing:
Ask the agent to retrieve migration notes and typed API context before changing:
Ask the agent to compare your local code with:
https://mcp.rv-grid.com/pro to your MCP client.Show me the best RevoGrid Pro examples for pivot in React.Find the Pro docs and type context for event manager.Use RevoGrid Pro MCP to build advanced filter headers in Vue.Review this implementation and compare it to the nearest RevoGrid Pro example.