Stimulsoft Documentation MCP Server
About
Official MCP server for Stimulsoft Reports & Dashboards documentation. Semantic search across FAQ, Programming Manual, Server/User Manual, and Server/Cloud API for .NET, WPF, Avalonia, WEB, Blazor, Angular, React, JS, PHP, Java, and Python platforms.
Details
- Author
- Unknown
- Categories
- Developer Tools, Knowledge Base, Search
Jump to
Official MCP server for Stimulsoft Reports & Dashboards documentation. Semantic search across FAQ, Programming Manual, Server/User Manual, and Server/Cloud API for .NET, WPF, Avalonia, WEB, Blazor, Angular, React, JS, PHP, Java, and Python platforms.
What can you do with Stimulsoft Documentation MCP?
Ask your AI assistant to search the official Stimulsoft Reports & Dashboards docs and generate up-to-date, platform-specific code.
- Search official docs— Usesti_searchto find documentation, code snippets, and answers across all Stimulsoft manuals and FAQs.
- Filter by platform— Narrowsti_searchresults to your stack (e.g., BLAZOR, WPF, ANGULAR) via theplatformparameter.
- Discover valid platforms— Callsti_get_platformsto list indexed Stimulsoft platforms and identify valid IDs for filtering.
- Generate platform-specific code— Ask for working code examples for components like StiReport or StiViewer in your stack.
Stimulsoft Documentation MCP Server connects AI assistants directly to the official Stimulsoft Reports & Dashboards developer documentation. Once configured, AI assistants in Agent mode can search documentation, find code examples, and generate Stimulsoft-specific code using up-to-date information instead of relying on potentially outdated training data.
Always review AI-generated output: check for architectural problems, security vulnerabilities, and adherence to project standards. AI-generated output can vary greatly based on the prompt, AI model used, and project code clarity.
Supported IDEs:Visual Studio 2022+, Visual Studio Code, Cursor, JetBrains Rider 2025.1+
Compatible AI Tools:GitHub Copilot, JetBrains AI Assistant, Claude Desktop, Claude Code (CLI), ChatGPT (Plus/Team/Enterprise), Gemini CLI, and other MCP-compatible assistants
- Enable Agent Modein your IDE (if required).
- Add the server endpointto your MCP configuration (see instructions below).
- Verify the connection: confirm thatsti_get_platformsandsti_searchappear in your AI assistant's available tools.
- Set custom instructions(optional) to optimize how the assistant uses Stimulsoft tools.
Create or edit.mcp.jsonin the%USERPROFILE%directory:
{ "servers": { "stimulsoft-docs": { "type": "http", "url": "https://devs.stimulsoft.com/mcp-docs" } } }
UseCommand Palette → MCP: Add Server, or create<project>/.vscode/mcp.json:
{ "servers": { "stimulsoft-docs": { "type": "http", "url": "https://devs.stimulsoft.com/mcp-docs" } } }
Alternatively, create.mcp.jsonin the project root:
{ "mcpServers": { "stimulsoft-docs": { "type": "http", "url": "https://devs.stimulsoft.com/mcp-docs" } } }
Create<project>/.cursor/mcp.jsonor go toSettings → Tools & Integrations → New MCP Server:
{ "mcpServers": { "stimulsoft-docs": { "type": "http", "url": "https://devs.stimulsoft.com/mcp-docs" } } }
Go toSettings → Tools → AI Assistant → Model Context Protocol (MCP), click +, select HTTP protocol and supply:
{ "stimulsoft-docs": { "type": "http", "url": "https://devs.stimulsoft.com/mcp-docs" } }
OpenSettings → Connectors → Add custom connector:
- Name:Stimulsoft Documentation
- URL:https://devs.stimulsoft.com/mcp-docs
- Authentication:: No authentication
Or editclaude_desktop_config.jsondirectly:
- macOS:~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:%APPDATA%\Claude\claude_desktop_config.json
{ "mcpServers": { "stimulsoft-docs": { "type": "http", "url": "https://devs.stimulsoft.com/mcp-docs" } } }
# Local configuration claude mcp add --transport http stimulsoft-docs https://devs.stimulsoft.com/mcp-docs # Global configuration claude mcp add --scope user --transport http stimulsoft-docs https://devs.stimulsoft.com/mcp-docs # Verify registered servers claude mcp list
Navigate toRepository → Settings → Copilot → Coding agentand add in the "MCP configuration" section:
{ "stimulsoft-docs": { "type": "http", "url": "https://devs.stimulsoft.com/mcp-docs", "tools": ["*"] } }
OpenSettings → Connectors → Advanced settings, enableDeveloper mode, thenCreate connector:
- Name:Stimulsoft Documentation
- URL:https://devs.stimulsoft.com/mcp-docs
- Authentication:No authentication
{ "Stimulsoft Docs MCP Server": { "httpUrl": "https://devs.stimulsoft.com/mcp-docs" } }
To get the most relevant results from the Stimulsoft Documentation MCP Server:
- Be specific about components. Mention exact class names:StiReport,StiViewer,StiDesigner,StiBlazorViewer,StiWebViewer,StiNetCoreViewer.
- Include your technology stack. Specify your platform: WinForms, WPF, Avalonia, ASP.NET Core, Blazor, Angular, React, JS, PHP, Java, Python.
- Request code examplesexplicitly when needed.
- Reference the MCP server. Use phrases like "Use stimulsoft-docs", "search Stimulsoft docs", or "according to Stimulsoft documentation".
- How to export a report to PDF in Blazor? Use stimulsoft-docs.
- Show me how to connect StiReport to a REST API data source in Angular. Search Stimulsoft docs.
- How do I customize StiWebViewer toolbar buttons in ASP.NET Core?
- Create a WPF window with StiViewer displaying a report from file. Use stimulsoft-docs.
- How to add a calculated column to StiReport programmatically in C#?
Define custom instructions to guide how the AI assistant uses Stimulsoft tools.
GitHub Copilot (VS Code, Visual Studio, JetBrains Rider)
Create or edit<project>/.github/copilot-instructions.md:
--- description: 'Answer questions about Stimulsoft Reports & Dashboards using the stimulsoft-docs MCP server' --- You are a developer expert in Stimulsoft Reports & Dashboards. When replying to ANY question about Stimulsoft components, use the stimulsoft-docs MCP server. ## Workflow: 1. Call sti_get_platforms if the target platform is unclear 2. Call sti_search to find relevant documentation sections 3. Provide a comprehensive answer based on retrieved information ## Constraints: - Answer questions based solely on information from the MCP server - Include code examples from documentation when available - Reference specific Stimulsoft classes, properties, and methods - Specify the platform (NET, WPF, BLAZOR, etc.) in search queries
Navigate toSettings → Rules & Memoriesand add a rule with similar content.
Create aProject(Projects → New Project), name it, clickSet custom instructionsand add guidelines similar to the example above. The Stimulsoft MCP connector will be available across all conversations within this project.
# Stimulsoft Development Instructions When working with Stimulsoft Reports & Dashboards: - Always use the stimulsoft-docs MCP server to search documentation - Reference specific Stimulsoft class names (StiReport, StiViewer, etc.) - Include technology stack (WinForms, WPF, Blazor, ASP.NET Core, Angular, React, JS, PHP, Java, Python) - Follow Stimulsoft best practices from official documentation
Reports.NET (WinForms), Reports.WPF, Reports.AVALONIA, Reports.WEB (ASP.NET / ASP.NET Core / MVC), Reports.BLAZOR (Server & WebAssembly), Reports.ANGULAR, Reports.REACT, Reports.JS, Reports.PHP, Reports.JAVA (Java SE & Jakarta EE), Reports.PYTHON, and Stimulsoft Server API.
Open a browser and go tohttps://devs.stimulsoft.com/mcp-docs— you should see a plain-text banner confirming the server is running.
curl -X POST https://devs.stimulsoft.com/mcp-docs \ -H "Content-Type: application/json" \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
The response should contain bothsti_get_platformsandsti_searchtool definitions.
This is a web browser that enables your coding agent, such as Claude Code, to visit websites on your behalf and assist you in identifying bugs or creating UI test cases.
Create and read feature flags, review experiments, generate flag types, search docs, and interact with GrowthBook's feature flagging and experimentation platform.
Search Apple's Developer Documentation with smart search and wildcard support.
Search, compare, and get docs for 210+ APIs ranked by CLI and agent relevance
A Python server for searching libraries and retrieving documentation, with support for HTTP/HTTPS proxies.
Query Rust crates from crates.io and docs.rs. Search for crates, get info, versions, dependencies, and documentation.
Apple Documentation MCP Server - Search Apple docs, Swift Evolution, and sample code
Optimize any site for AI search: get DeepRank methodology, optimization steps, and suggestions (llms.txt, JSON-LD, audit checklist) so your AI assistant can implement AI visibility in the repo.
Search the Modellix knowledge base to quickly find relevant technical information, code examples, and API references. Retrieve implementation details and official guides to solve development queries efficiently. Access direct links to documentation for deeper context on specific features and tools.
Search and query Onyx programming language documentation and GitHub code examples.
An MCP server providing searchable access to multiple AI/ML SDK documentation and source code.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.




