@syncfusion/aspnetcore-assistant
v1.0.0
Published
MCP server that provides efficient access to Syncfusion documentation, implementation guidelines, and code generation for ASP.NET CORE
Downloads
28
Readme
SyncfusionAspNetCoreAssistant MCP Server
Overview
The SyncfusionAspNetCoreAssistant is a specialized Model Context Protocol (MCP) server designed to enhance development with Syncfusion's ASP.NET Core control libraries. It integrates seamlessly with MCP-compatible clients to provide intelligent assistance for building ASP.NET Core applications with Syncfusion® controls.
Key Features
- Intelligent code generation for Syncfusion® ASP.NET Core controls.
- Detailed control documentation and usage examples.
- Troubleshooting assistance for common integration challenges.
Prerequisites
Before using SyncfusionAspNetCoreAssistant, ensure you have:
- Required node version >= 18
- A compatible MCP client (VS Code with GitHub Copilot, Syncfusion® CodeStudio, etc.)
- An active Syncfusion® license (any of the following):
- An active API KEY
Unlimited Access
Syncfusion® offers unlimited access to this MCP server. There are no restrictions on:
- Number of requests
- Controls usage
- Query caps
- Usage duration
This ensures users can fully leverage Syncfusion® controls to enhance their development experience without limitations.
Installation
Before you can invoke the SyncfusionAspNetCoreAssistant MCP server, you need to configure your MCP client with these core settings. The Generic MCP Server Settings shown below are identical across all clients:
Generic MCP Server Settings
- npm package name:
@syncfusion/aspnetcore-assistant - Type: stdio (standard input/output transport)
- Command: npx
- Arguments: -y
- Server name: SyncfusionAspNetCoreAssistant
API Key Configuration
Login to your Syncfusion account and generate an API Key from the API Key page. Replace YOUR_API_KEY_FILE_PATH or YOUR_API_KEY in the configuration files with your generated key.
There are two options:
Using an API Key File (Recommended)
Store your API key in a separate file and reference its path in the
Syncfusion_API_Key_Pathenvironment parameter. This approach is more secure as you don't expose the key directly in configuration files.Supported file formats:
.txtor.keyfile"env": { "Syncfusion_API_Key_Path": "YOUR_API_KEY_FILE_PATH" // "D:\\syncfusion-key.txt" (or) "D:\\syncfusion-key.key" }Direct API Key
Paste your
Syncfusion_API_Keydirectly in the configuration file's environment parameter."env": { "Syncfusion_API_Key": "YOUR_API_KEY" }
Below are setup instructions for popular MCP clients:
Syncfusion® Code Studio
- In Code Studio, open MCP Marketplace and navigate to the
Custom Serverstab. - Enter the Server Name as
aspnetcore-mcp, choose Server Type as npm package, and set the NPM Package name to@syncfusion/aspnetcore-assistant. - Add an environment variable as
Syncfusion_API_Keyand value as your Syncfusion API key, then click Install Server. - Once installed, the server will appear in the User Installed Server list, and will be added to the config.yaml file.
- The server is now ready for use in Code Studio. For more details, refer to the Code Studio documentation.
Visual Studio (GitHub Copilot MCP)
- To configure an MCP server for a specific workspace, you can create a
.vs/mcp.jsonfile in your workspace folder.
{
"servers": {
"syncfusion-aspnetcore-assistant": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@syncfusion/aspnetcore-assistant@latest"
],
"env": {
"Syncfusion_API_Key_Path": "YOUR_API_KEY_FILE_PATH",
// or
"Syncfusion_API_Key": "YOUR_API_KEY"
}
}
}
}- After updating the mcp.json configuration, open the GitHub Copilot Chat window. Click the Ask arrow, then select Agent.
- Select the SyncfusionAspNetCoreAssistant from the tools section.
- For more details, refer to the official Visual Studio documentation.
Visual Studio Code (GitHub Copilot MCP)
- To configure an MCP server for a specific workspace, you can create a
.vscode/mcp.jsonfile in your workspace folder.
{
"servers": {
"syncfusion-aspnetcore-assistant": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@syncfusion/aspnetcore-assistant@latest"
],
"env": {
"Syncfusion_API_Key_Path": "YOUR_API_KEY_FILE_PATH",
// or
"Syncfusion_API_Key": "YOUR_API_KEY"
}
}
}
}After updating the configuration in mcp.json, you'll notice a "Start" option at the top of the config. This allows you to easily start the SyncfusionAspNetCoreAssistant server directly from the settings interface without additional commands.
Confirm the server is active by checking for a message like:
SyncfusionAspNetCoreAssistant is running...in the output.For additional guidance, refer to the VS Code documentation.
Cursor
To configure an MCP server for a specific workspace, you can create a .cursor/mcp.json file in your workspace folder.
{
"mcpServers": {
"syncfusion-aspnetcore-assistant": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@syncfusion/aspnetcore-assistant@latest"
],
"env": {
"Syncfusion_API_Key_Path": "YOUR_API_KEY_FILE_PATH",
// or
"Syncfusion_API_Key": "YOUR_API_KEY"
}
}
}
}For more details, refer to the Cursor documentation.
JetBrains IDEs
- Go to Settings -> Tools -> AI Assistant -> Model Context Protocol (MCP).
- Click + Add to add a new MCP server configuration.
- In the New MCP Server dialog, switch the dropdown as
As JSONand add the following config:
{
"mcpServers": {
"syncfusion-aspnetcore-assistant": {
"command": "npx.cmd",
"args": [
"-y",
"@syncfusion/aspnetcore-assistant@latest"
],
"env": {
"Syncfusion_API_Key_Path": "YOUR_API_KEY_FILE_PATH",
// or
"Syncfusion_API_Key": "YOUR_API_KEY"
}
}
}
}- Click OK and Apply.
For further assistance, see the JetBrains documentation.
For more detailed information about configuring MCP servers in various clients, refer to the official documentations, e.g., Windsurf
Usage
To activate the SyncfusionAspNetCoreAssistant MCP server:
Start your prompt with one of the following:
- 'SyncfusionAspNetCoreAssistant'
- '/syncfusion-aspnetcore-assistant'
- '/syncfusion-aspnetcore'
- '@syncfusion-aspnetcore'
- '@ask_syncfusion_aspnetcore'
- 'ej2-aspnetcore'
In VS Code, use
#SyncfusionAspNetCoreAssistantfor direct invocation.Grant permission for the server to run (for the session, workspace, or always).
For best results, start a new chat for each new topic to maintain clean context.
Mode availability
Syncfusion® MCP Servers provide full access to all AI interaction modes — Ask/Chat, Edit, and Agent — across supported MCP clients.
Best Practices for Effective Usage
Be specific: Mention both platform and control (e.g., "How do I create a Syncfusion ASP.NET Core Grid with paging and filtering?").Provide context: Include details about your use case for more targeted solutions.Use descriptive queries: Avoid vague questions that lack necessary context.Start fresh for new topics: Begin a new chat session when switching controls or topics.
Example Queries
Here are some effective ways to use SyncfusionAspNetCoreAssistant:
- "Create a Syncfusion ASP.NET Core Grid control with paging, sorting and filtering."
- "How do I implement data binding with Syncfusion ASP.NET Core scheduler?"
- "Show me how to create a dashboard with multiple Syncfusion controls."
Troubleshooting
If you encounter issues:
- Verify your API key is correctly configured.
- Ensure the MCP server is enabled in your client's tools selection.
- Check that you're using a compatible MCP client version.
- Try restarting your development environment.
Support
Product support is available through the following mediums.
- Support ticket - Guaranteed Response in 24 hours | Unlimited tickets | Holiday support
- Community forum
- Request feature or report bug
- Live chat
License
This is a commercial product and requires a paid license for possession or use. Syncfusion® licensed software, including this control, is subject to the terms and conditions of Syncfusion's EULA. To acquire a license, you can purchase here or start a free 30-day trial here. A free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers. © Copyright 2025 Syncfusion® Inc. All Rights Reserved. The Syncfusion® Essential Studio® license and copyright applies to this distribution. The Syncfusion® Essential® Studio license and copyright applies to this distribution.
