Accelerate Enterprise App Development
with Syncfusion MCP Servers

Integrate Syncfusion MCP Servers directly into your favorite IDE to generate, configure, and troubleshoot Syncfusion component code with ease — powered by official Syncfusion APIs, documentation, and intelligent, context-aware guidance.

Select an AI Coding Assistant
React Assistant
Angular Assistant
Blazor Assistant
JavaScript Assistant
Vue Assistant
ASP.NET Core Assistant
.NET MAUI Assistant
WPF Assistant
WinUI Assistant
WinForms Assistant
ASP.NET MVC Assistant
Document SDK Assistant
PDF Viewer SDK Assistant
Spreadsheet Editor SDK Assistant
Please select an AI Coding Assistant from the dropdown.
Please select an AI Coding Assistant from the dropdown.
Looking for prompt ideas?
// Multi-Button Framework Selector (function() { 'use strict'; // Close all dropdowns when clicking outside document.addEventListener('click', function(e) { if (!e.target.closest('.framework-action-dropdown')) { document.querySelectorAll('.framework-action-dropdown.active').forEach(function(dropdown) { dropdown.classList.remove('active'); }); } }); // Initialize all multi-button framework selectors function initMultiButtonSelectors() { const containers = document.querySelectorAll('.framework-action-container'); containers.forEach(function(container) { const dropdown = container.querySelector('.framework-action-dropdown'); const dropdownSelected = dropdown.querySelector('.framework-action-selected'); const selectedText = dropdown.querySelector('.framework-action-text'); const options = dropdown.querySelectorAll('.framework-action-option'); const buttons = container.querySelectorAll('.framework-action-btn'); if (!dropdown || buttons.length === 0) return; // Get button URLs from data attribute const buttonUrls = JSON.parse(dropdown.getAttribute('data-button-urls')); let currentValue = ''; // Start with no value (placeholder state) // Toggle dropdown dropdownSelected.addEventListener('click', function(e) { e.stopPropagation(); // Close other dropdowns document.querySelectorAll('.framework-action-dropdown.active').forEach(function(other) { if (other !== dropdown) { other.classList.remove('active'); } }); dropdown.classList.toggle('active'); }); // Handle option selection options.forEach(function(option) { option.addEventListener('click', function(e) { e.stopPropagation(); // Update selected value currentValue = option.getAttribute('data-value'); selectedText.textContent = option.textContent; selectedText.classList.remove('placeholder'); // Update selected state options.forEach(function(opt) { opt.classList.remove('selected'); }); option.classList.add('selected'); // Enable all buttons buttons.forEach(function(btn) { btn.disabled = false; btn.style.opacity = '1'; btn.style.cursor = 'pointer'; }); // Close dropdown dropdown.classList.remove('active'); }); }); // Handle button clicks buttons.forEach(function(button) { button.addEventListener('click', function(e) { e.preventDefault(); // Don't navigate if no framework selected if (!currentValue) { return; } const action = button.getAttribute('data-action'); const url = buttonUrls[action] && buttonUrls[action][currentValue]; if (url) { // Add loading state to clicked button button.classList.add('loading'); container.classList.add('loading'); // Open in new tab window.open(url, '_blank'); // Remove loading state setTimeout(function() { button.classList.remove('loading'); container.classList.remove('loading'); }, 500); } }); }); // Keyboard support dropdown.addEventListener('keydown', function(e) { if (e.key === 'Escape') { dropdown.classList.remove('active'); } }); }); } // Initialize when DOM is ready if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', initMultiButtonSelectors); } else { initMultiButtonSelectors(); } })();
Mcp server banner
PDF-icon

PDF Viewer SDK

Excel-icon

Spreadsheet Editor SDK

WinUI SVG

WinUI

ASP.NET MVC SVG

WinForms

ASP.NET MVC SVG

ASP.NET MVC

Document SDK SVG

Document SDK

Vue SVG

Vue

ASP.NET CORE SVG

ASP.NET Core

.NET MAUI SVG

.NET MAUI

ASP.NET MVC SVG

WPF

AI-Powered Development Across Modern Frameworks

Build faster across modern frameworks with AI-powered coding assistance. Generate, customize, and integrate UI and document solutions seamlessly while maintaining consistency and scalability in your applications.

Quick Setup for Instant MCP-Powered Development

Add Syncfusion MCP Servers to your development workflow in minutes. Whether you're using VS Code, Cursor, Code Studio, or JetBrains IDEs with React, Angular, Blazor, or other platforms, our guided setup ensures your AI client is ready to generate component code immediately. 

Configure the Syncfusion MCP Servers

1. Create a `.vscode/mcp.json` file in your workspace with the MCP Servers configuration. For example, the React MCP Servers can be installed as follows: 


{
  "servers": {
    "sf-react-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@syncfusion/react-mcp@latest"],
      "env": {
        "Syncfusion_API_Key": "YOUR_API_KEY"
      }
    }
  }
}

2. Get your Syncfusion API key and replace YOUR_API_KEY in the server configuration with your actual key.

3. In the mcp.json file, inline Start actions will be visible. You can click Start to install and launch the MCP Servers, and the tools will be added. 

4. Activate the MCP tools in your IDE by using the #search_docs command followed by your query:

#search_docs How do I enable paging and sorting in the Syncfusion React Grid?

Configure the Syncfusion MCP Servers

1. Create a `.vscode/mcp.json` file in your workspace with the MCP Servers configuration. For example, the Angular MCP Servers can be installed as follows:


{
  "servers": {
    "sf-angular-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@syncfusion/angular-mcp@latest"],
      "env": {
        "Syncfusion_API_Key": "YOUR_API_KEY"
      }
    }
  }
}

2. Get your Syncfusion API key and replace YOUR_API_KEY in the server configuration with your actual key.

3. In the mcp.json file, inline Start actions will be visible. You can click Start to install and launch the MCP Server, and the tools will be added.

4. Activate the MCP tools in your IDE by using the #search_docs command followed by your query:

#search_docs How do I enable paging and sorting in the Syncfusion Angular Grid?

Configure the Syncfusion MCP Servers

1. Create a `.vscode/mcp.json` file in your workspace with the MCP Servers configuration. For example, the Blazor MCP Servers can be installed as follows:


{
  "servers": {
    "sf-blazor-mcp": {
      "type": "stdio",
      "command": "dnx",
      "args": ["-y", "Syncfusion.Blazor.MCP", "--yes"],
      "env": {
        "Syncfusion_API_Key": "YOUR_API_KEY"
      }
    }
  }
}

2. Get your Syncfusion API key and replace YOUR_API_KEY in the server configuration with your actual key.

3. In the mcp.json file, inline Start actions will be visible. You can click Start to install and launch the MCP Servers, and the tools will be added.

4. Activate the MCP tools in your IDE by using the #search_docs command followed by your query:

#search_docs How do I enable paging and sorting in the Syncfusion Blazor Grid?

Configure the Syncfusion MCP Servers

1. Create a `.vscode/mcp.json` file in your workspace with the MCP Servers configuration. For example, the JavaScript MCP Servers can be installed as follows:


{
  "servers": {
    "sf-javascript-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@syncfusion/javascript-mcp@latest"],
      "env": {
        "Syncfusion_API_Key": "YOUR_API_KEY"
      }
    }
  }
}

2. Get your Syncfusion API key and replace YOUR_API_KEY in the server configuration with your actual key.

3. In the mcp.json file, inline Start actions will be visible. You can click Start to install and launch the MCP Servers, and the tools will be added.

4. Activate the MCP tool in your IDE by using the #search_docs command followed by your query:

#search_docs How do I enable paging and sorting in the Syncfusion JavaScript Grid?
Vue SVG

Vue

ASP.NET CORE SVG

ASP.NET Core

.NET MAUI SVG

.NET MAUI

ASP.NET MVC SVG

WPF

WinUI SVG

WinUI

ASP.NET MVC SVG

WinForms

ASP.NET MVC SVG

ASP.NET MVC

Document SDK SVG

Document SDK

AI-Powered Development Across Modern Frameworks

Build faster across modern frameworks with AI-powered coding assistance. Generate, customize, and integrate UI and document solutions seamlessly while maintaining consistency and scalability in your applications.

How It Works

Get started in minutes with our simple, 4-step process.

Connect

Set up the Syncfusion MCP Servers in your AI-enabled IDE.

Ask

Describe what you want - features, components, or issues.

Generate

Receive accurate, ready-to-use code based on Syncfusion APIs.

Apply

Use the generated code directly in your application.

Your Intelligent Co-Developer

With MCP-powered guidance, it's like having instant access to Syncfusion expertise directly within your development workflow. By providing relevant documentation, component knowledge, and API references, Syncfusion MCP Servers help you generate code more efficiently, resolve issues faster, and stay focused on building high-performance applications.

Do More with Less Effort

Let your AI assistant leverage Syncfusion MCP Servers to streamline common development tasks while you focus on your application's core functionality:

  • Automate repetitive development tasks such as creating and configuring Syncfusion components.
  • Get instant answers grounded in Syncfusion documentation, samples, and component APIs.
  • Resolve issues faster with context-aware guidance and implementation recommendations directly in your IDE.
  • Accelerate development by reducing time spent searching documentation and troubleshooting API usage.
mcp server

Powered by Syncfusion MCP Servers

The Syncfusion MCP Servers, available as an add-on to Syncfusion Essential Studio®, are powered by Syncfusion’s official documentation, component APIs, and knowledge base, providing accurate, context-aware coding guidance directly within your development environment.

Why Use Syncfusion MCP Servers

Generic AI coding tools often rely on training data that may be incomplete or outdated. Syncfusion MCP Servers connect your AI assistant directly to trusted Syncfusion documentation, examples, and 1,600+ component APIs, helping you build applications with greater accuracy and confidence.

Context-Aware Guidance

Context-Aware Guidance

Get answers based on Syncfusion component knowledge. 

Accurate Code Suggestions

Generate reliable Syncfusion component implementations.

Reduced Development Time

Reduced Development Time

Avoid manual searching through documentation.

Faster Learning Curve

Minimal Learning Curve

Understand component APIs and usage quickly.

Get Started with Your Favorite IDE

Set up Syncfusion MCP and start generating component‑aware code directly in your IDE. Select your IDE from the tabs to view the setup instructions tailored to your development environment.

Configure the Syncfusion MCP Server globally in VS Code:
    1. Click here Open Installation to open the installation link.
    2. Replace YOUR_API_KEY with your actual Syncfusion API key.
    3. Follow the prompts to complete the installation.
For more information, see the VS Code MCP documentation.
Configure the Syncfusion MCP Server globally in Cursor:
    1. Click hereOpen Installation to open the installation link.
    2. Update the YOUR_API_KEY_FILE_PATH with the path to your API key file.
    3. Follow the prompts to complete the installation.
For more information, see the Cursor MCP documentation.

Configure the Syncfusion MCP Server globally in Code Studio:

    1. Open the MCP Marketplace in Code Studio.
    2. Search for Syncfusion Assistant and click Install (for example, Syncfusion React Assistant).
    3. Enter your Syncfusion API key when prompted.
    4. The server installs and appears in the Installed list.

For more information, see the Code Studio MCP documentation.

Configure the Syncfusion MCP Server globally in JetBrains:

    1. Open AI Assistant chat, type /, and select Add Command
    2. Click ➕ Add on the MCP settings page
    3. Choose STDIO and select JSON configuration
    4. Add Syncfusion MCP server configuration along with the API key.
    5. Click OK, then click Apply. The server starts and shows Connected status.

For more information, see the JetBrains MCP documentation.

Works with Your Favorite IDEs

Syncfusion MCP servers integrate directly with modern, AI-enabled IDEs, enabling real-time, component-aware code generation inside your development workflow.

VS Code

Full MCP integration with Visual Studio Code. Install globally or per-workspace.

Code Studio

Works with Syncfusion Code Studio’s enhanced AI capabilities and full MCP integration.

JetBrains IDEs

Compatible with JetBrains IDEs through AI Assistants with MCP support.

Cursor

Native support for Cursor IDE with enhanced AI capabilities and MCP integration.

How It Works

Get started in minutes with our simple, 4-step process:

Step 1

Connect MCP Server

Step 1

Connect MCP Server

Configure the Syncfusion MCP Server in your AI-enabled development environment.

Step 2

Ask Your AI Assistant

Step 2

Ask Your AI Assistant

Ask your AI Assistant questions such as:

How do I add filtering to a Syncfusion React DataGrid?

Step 3

Receive Accurate Code Suggestions

Step 3

Receive Accurate Code Suggestions

The AI assistant generates code snippets and explanations based on Syncfusion documentation.

Step 4

Apply the Code

Step 4

Apply the Code

Use the generated code directly in your application.

Start Coding with AI Assistance

Accelerate development with AI-powered guidance for Syncfusion components.

Frequently Asked Questions

You need either Node.js 18 or later (for React, Angular, JavaScript, TypeScript, and Vue MCP Servers) or the .NET SDK 8 or later (for ASP.NET MVC, ASP.NET Core, Blazor, Document SDK, MAUI, WinForms, WinUI, and WPF MCP Servers), a compatible MCP client (VS Code, Cursor, Code Studio, etc.), a Syncfusion API key, and an active Syncfusion license (Commercial, Community, or Trial).

Syncfusion MCP Servers are free with unlimited usage. The MCP Server connects your development environment to Syncfusion’s enterprise component library and documentation. All code generation happens through your IDE’s AI assistant (like Claude in Cursor or the GitHub Copilot), so there are no additional charges, token limits, or request caps from Syncfusion. You’ll only pay for your AI provider’s service if you’re using a paid IDE or LLM subscription.

The tools don't access project files or workspace contents directly. User prompts are not stored or used for training. The MCP Servers act as a knowledge bridge while respecting your privacy.

Syncfusion MCP Servers provide context, code suggestions, and implementation guidance based on your project's structure and coding conventions. Through your IDE's AI assistant, you can review suggested changes before applying them. You maintain full control over your codebase, as any code generation or modification requires your review and approval within the IDE. The MCP Server supplies relevant context and recommendations, but it does not make changes to your code automatically.

For optimal results, use high-performance models like Claude Sonnet 4.5 (recommended), GPT-5, or Gemini 3 Pro. These models better understand complex component relationships.

Absolutely! Syncfusion MCP Servers integrate seamlessly with any existing React, Angular, or Blazor project. Simply install the required MCP Server in your IDE, and you’ll have instant access to intelligent component suggestions, implementation patterns, and best practices for Syncfusion components.

Yes, you can deploy an application that uses Syncfusion components to unlimited clients. We only license on a per-developer basis and do not charge any runtime, royalty, or deployment fees. More about licensing.

{ "@context": "https://schema.org", "@type": "Organization", "@id": "https://www.syncfusion.com/#organization", "name": "Syncfusion", "url": "https://www.syncfusion.com/", "sameAs": [ "https://www.facebook.com/syncfusion", "https://www.linkedin.com/company/syncfusion", "https://twitter.com/Syncfusion", "https://www.instagram.com/syncfusionofficial/?hl=en", "https://www.youtube.com/user/SyncfusionInc", "https://www.pinterest.com/syncfusionofficial/", "https://www.threads.net/@syncfusionofficial" ], "email": "[email protected]", "logo": { "@type": "ImageObject", "@id": "https://www.syncfusion.com/explore/#logo", "url": "https://www.syncfusion.com/explore/wp-content/uploads/sites/18/2026/01/Syncfusion_Logo_Image.png", "contentUrl": "https://www.syncfusion.com/explore/wp-content/uploads/sites/18/2026/01/Syncfusion_Logo_Image.png", "caption": "Syncfusion", "inLanguage": "en-US", "width": "1200", "height": "630" } } { "@context": "https://schema.org", "@type": "WebSite", "@id": "https://www.syncfusion.com/explore/#website", "url": "https://www.syncfusion.com/explore", "name": "Syncfusion", "alternateName": "SF", "publisher": { "@id": "https://www.syncfusion.com/#organization" }, "inLanguage": "en-US" } { "@context": "https://schema.org", "@type": "FAQPage", "mainEntity": [ { "@type": "Question", "name": "What's the difference between the Agentic UI Builder and AI Coding Assistants?", "acceptedAnswer": { "@type": "Answer", "text": "Use the Agentic UI Builder for creating complete pages, dashboards, and full interfaces from scratch with coordinated tools for layout, components, styling, and icons. Use the AI Coding Assistants for integrating Syncfusion component knowledge directly into your development workflow. It’s perfect for implementing individual components, troubleshooting integration issues, and accessing API documentation on demand." } }, { "@type": "Question", "name": "What are the prerequisites to use Syncfusion AI Coding Assistants?", "acceptedAnswer": { "@type": "Answer", "text": "You need Node.js >= 18, a compatible MCP client (VS Code, Cursor, Code Studio), a Syncfusion API key, and an active Syncfusion license (commercial, community, or trial)." } }, { "@type": "Question", "name": "Are there usage limits or charges for Syncfusion MCP servers?", "acceptedAnswer": { "@type": "Answer", "text": "Syncfusion MCP servers are free with unlimited usage. The MCP server connects your development environment to Syncfusion’s enterprise component library and documentation. All code generation happens through your IDE’s AI assistant (like Claude in Cursor or the GitHub Copilot), so there are no additional charges, token limits, or request caps from Syncfusion. You’ll only pay for your AI provider’s service if you’re using a paid IDE or LLM subscription." } }, { "@type": "Question", "name": "How is my data protected?", "acceptedAnswer": { "@type": "Answer", "text": "The tools don't access project files or workspace contents directly. User prompts are not stored or used for training. The MCP servers act as a knowledge bridge while respecting your privacy." } }, { "@type": "Question", "name": "How do Syncfusion AI Coding Assistants interact with my existing code?", "acceptedAnswer": { "@type": "Answer", "text": "Syncfusion AI Coding Assistants generates code suggestions that respect your project structure and coding conventions. The assistant provides implementation guidance through your IDE’s AI, allowing you to review and accept changes before they’re applied. You maintain full control — the AI Coding Assistants provides context and recommendations, but all code modifications require your approval through your IDE’s interface." } }, { "@type": "Question", "name": "Can I deploy an application that uses Syncfusion components to unlimited clients?", "acceptedAnswer": { "@type": "Answer", "text": "Yes, you can deploy an application that uses Syncfusion components to unlimited clients. We only license on a per-developer basis and do not charge any runtime, royalty, or deployment fees. More about licensing." } }, { "@type": "Question", "name": "Can I use Syncfusion MCP servers with my existing project?", "acceptedAnswer": { "@type": "Answer", "text": "Absolutely! Syncfusion MCP servers integrate seamlessly with any existing React, Angular, or Blazor project. Simply install the required MCP server in your IDE, and you’ll have instant access to intelligent component suggestions, implementation patterns, and best practices for Syncfusion components." } }, { "@type": "Question", "name": "Which AI models work best?", "acceptedAnswer": { "@type": "Answer", "text": "For optimal results, use high-performance models like Claude Sonnet 4.5 (recommended), GPT-5, or Gemini 3 Pro. These models better understand complex component relationships." } } ] } { "@context": "https://schema.org", "@type": "ImageObject", "@id": "https://www.syncfusion.com/explore/wp-content/uploads/sites/18/2026/03/AI-Coding-assistant-Updated-Image.webp", "contentUrl": "https://www.syncfusion.com/explore/wp-content/uploads/sites/18/2026/03/AI-Coding-assistant-Updated-Image.webp", "license": "https://www.syncfusion.com/copyright", "acquireLicensePage": "https://www.syncfusion.com/company/contact-us", "creditText": "Syncfusion Inc.", "creator": { "@type": "Organization", "name": "Syncfusion" }, "copyrightNotice": "© Syncfusion Inc. All Rights Reserved", "representativeOfPage": true } { "@context": "https://schema.org", "@type": "HowTo", "name": "AI Coding Assistants – Generate, Fix & Integrate Code Faster | Syncfusion", "description": "Accelerate development with Syncfusion AI Coding Assistants. Generate code, configure components, and troubleshoot faster using context-aware AI powered by real Syncfusion APIs.", "url": "https://www.syncfusion.com/explore/ai-coding-assistants/", "inLanguage": "en", "author": { "@type": "Organization", "name": "Syncfusion" }, "publisher": { "@type": "Organization", "name": "Syncfusion", "logo": { "@type": "ImageObject", "url": "https://www.syncfusion.com/favicon.ico" } }, "mainEntityOfPage": "https://www.syncfusion.com/explore/ai-coding-assistants/", "step": [ { "@type": "HowToStep", "name": "Connect", "text": "Set up the Syncfusion MCP server in your AI-enabled IDE." }, { "@type": "HowToStep", "name": "Ask", "text": "Describe what you want - features, components, or issues." }, { "@type": "HowToStep", "name": "Generate", "text": "Receive accurate, ready-to-use code based on Syncfusion APIs." }, { "@type": "HowToStep", "name": "Apply", "text": "Use the generated code directly in your application." } ] } { "@context": "https://schema.org", "@type": [ "CollectionPage", "WebPage" ], "name": "AI Coding Assistants – Generate, Fix & Integrate Code Faster | Syncfusion", "url": "https://www.syncfusion.com/explore/ai-coding-assistants/", "description": "Accelerate development with Syncfusion AI Coding Assistants. Generate code, configure components, and troubleshoot faster using context-aware AI powered by real Syncfusion APIs.", "inLanguage": "en-US", "primaryImageOfPage": { "@id": "https://www.syncfusion.com/explore/wp-content/uploads/sites/18/2026/03/AI-Coding-assistant-Updated-Image.webp" }, "about": { "@id": "https://www.syncfusion.com/#organization" }, "mainEntity": { "@type": "ItemList", "name": "Syncfusion AI Coding Assistants", "itemListOrder": "http://schema.org/ItemListOrderAscending", "numberOfItems": 14, "itemListElement": [ { "@type": "ListItem", "position": 1, "name": "Blazor AI Coding Assistant", "description": "Syncfusion Blazor AI Coding Assistant helps developers solve specific development challenges, add features, and troubleshoot issues in existing .NET applications using intelligent AI assistance. Utilize real Syncfusion Blazor APIs to improve productivity and development efficiency." }, { "@type": "ListItem", "position": 2, "name": "React AI Coding Assistant", "description": "Syncfusion React AI Coding Assistant helps developers implement specific features, resolve issues, and optimize existing applications using intelligent, context-aware guidance. Get accurate code suggestions based on real Syncfusion APIs to speed up development and reduce debugging effort." }, { "@type": "ListItem", "position": 3, "name": "Angular AI Coding Assistant", "description": "Syncfusion Angular AI Coding Assistant enables developers to add new functionality, troubleshoot issues, and enhance existing applications with AI-driven, context-aware assistance. Leverage real Syncfusion Angular APIs to accelerate development and simplify problem-solving." }, { "@type": "ListItem", "position": 4, "name": "JavaScript AI Coding Assistant", "description": "The JavaScript AI Coding Assistant brings expertise in Syncfusion JavaScript UI components directly into your IDE. Generate, configure, and refine application code with real-time, documentation-aligned guidance for building interactive web experiences." }, { "@type": "ListItem", "position": 5, "name": "Vue AI Coding Assistant", "description": "The Vue AI Coding Assistant delivers framework-aware expertise for working with Syncfusion Vue UI components. Accelerate feature implementation, streamline configuration, and refine application logic with real-time, documentation-backed development guidance." }, { "@type": "ListItem", "position": 6, "name": "ASP.NET Core AI Coding Assistant", "description": "Purpose-built for ASP.NET Core development, our AI Coding Assistant provides in-depth guidance for integrating and optimizing Syncfusion UI components. Implement complex features with structured, API-level recommendations aligned with official documentation." }, { "@type": "ListItem", "position": 7, "name": ".NET MAUI AI Coding Assistant", "description": "Designed for cross-platform scenarios, the .NET MAUI AI Coding Assistant helps developers efficiently implement Syncfusion controls across mobile and desktop environments. Configure layouts, manage interactions, and enhance performance with contextual coding support." }, { "@type": "ListItem", "position": 8, "name": "WPF AI Coding Assistant", "description": "Tailored for desktop application development, the WPF AI Coding Assistant helps you build sophisticated interfaces using Syncfusion components. Simplify XAML configuration and feature integration through precise, documentation-aligned insights." }, { "@type": "ListItem", "position": 9, "name": "WinUI AI Coding Assistant", "description": "Optimized for modern Windows development, the WinUI AI Coding Assistant supports seamless integration of Syncfusion components. Develop responsive interfaces and advanced UI workflows with intelligent, context-aware implementation guidance." }, { "@type": "ListItem", "position": 10, "name": "WinForms AI Coding Assistant", "description": "Focused on Windows Forms applications, the WinForms AI Coding Assistant enables efficient use of Syncfusion controls through targeted coding assistance. Configure properties, extend functionality, and resolve implementation challenges with clarity." }, { "@type": "ListItem", "position": 11, "name": "ASP.NET MVC AI Coding Assistant", "description": "Built for MVC architecture, the ASP.NET MVC AI Coding Assistant supports structured integration of Syncfusion UI components. Enhance Razor views, manage controller interactions, and refine application behavior using accurate, documentation-driven recommendations." }, { "@type": "ListItem", "position": 12, "name": "Document SDK AI Coding Assistant", "description": "The Syncfusion AI Coding Assistant brings expert Document SDK knowledge into your IDE. Generate, configure, and refactor document-processing code with instant, documentation-backed guidance for PDFs, Word, Excel, and PPT." }, { "@type": "ListItem", "position": 13, "name": "PDF Viewer SDK AI Coding Assistant", "description": "The Syncfusion AI Coding Assistant brings expert PDF Viewer SDK knowledge into your IDE. Generate, configure, and troubleshoot PDF viewing and interaction features with instant, documentation-backed API guidance across platforms." }, { "@type": "ListItem", "position": 14, "name": "Spreadsheet Editor SDK AI Coding Assistant", "description": "The Syncfusion AI Coding Assistant equips your IDE with deep Spreadsheet Editor SDK expertise. Create, configure, and troubleshoot spreadsheet features faster using precise, documentation-backed API guidance across platforms." } ] } }