diff --git a/docs/en/cli/index.md b/docs/en/cli/index.md index 2fa422bdb6..887b684f31 100644 --- a/docs/en/cli/index.md +++ b/docs/en/cli/index.md @@ -79,6 +79,7 @@ Here is the list of all available commands before explaining their details: - [mcp-studio](../cli#mcp-studio): Starts ABP Studio MCP bridge for AI tools (requires ABP Studio running). - [generate-razor-page](../cli#generate-razor-page): Generates a page class that you can use it in the ASP NET Core pipeline to return an HTML page. - [generate-jwks](../cli#generate-jwks): Generates an RSA key pair (JWKS public key + PEM private key) for OpenIddict `private_key_jwt` client authentication. +- [mcp](../cli#mcp): Runs a local MCP bridge to the ABP.IO MCP service, so AI coding assistants can search the ABP documentation, articles, support questions and source code. ### help @@ -1341,6 +1342,63 @@ var tokenResponse = await httpClient.RequestClientCredentialsTokenAsync( }); ``` +### mcp + +Runs a local [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) bridge to the ABP.IO MCP service, so MCP clients such as Claude Code, Codex, Cursor and Visual Studio Code can search the ABP documentation, community articles, answered support questions and the framework source code. + +The command communicates with the MCP client over `stdio` and forwards the tool calls to `https://mcp.abp.io` by default. It uses the credentials of the [logged in](../cli#login) user, so you should run `abp login` before using it and your organization must have an active license. An internet connection is also required: the command checks the server before starting and fails when it cannot be reached. + +Usage: + +```bash +abp mcp [get-config] +``` + +Examples: + +```bash +abp mcp # Starts the MCP server. MCP clients run this command themselves. +abp mcp get-config # Prints the configuration to be added to your MCP client. +``` + +#### Configuring your MCP client + +`abp mcp get-config` prints the following configuration: + +```json +{ + "mcpServers": { + "abp": { + "command": "abp", + "args": [ + "mcp" + ], + "env": {} + } + } +} +``` + +Claude Code uses that JSON directly. Add it to the `.mcp.json` file in your solution folder to enable the server for a single solution, or to `~/.claude.json` (`%USERPROFILE%\.claude.json` on Windows) to enable it for all of them. Cursor uses the same format in its own `mcp.json` file. For the other clients, check their documentation for the configuration file and the format they expect; the command and the arguments are always the same. + +Codex uses the TOML format, so add the following section to `~/.codex/config.toml` (`%USERPROFILE%\.codex\config.toml` on Windows): + +```toml +[mcp_servers.abp] +command = "abp" +args = ["mcp"] +``` + +#### Tools + +| Tool | Description | +| --- | --- | +| `get_relevant_abp_documentation` | Searches the official ABP documentation. | +| `get_relevant_abp_articles` | Searches the ABP community articles. | +| `get_relevant_abp_support_questions` | Searches the previously answered support questions. | +| `search_source_code` | Searches the indexed ABP source code. | +| `list_abp_github_repositories` | Lists the ABP GitHub repositories available to the source code search. | + ## See Also - [Examples for the new command](./new-command-samples.md) diff --git a/docs/en/studio/release-notes.md b/docs/en/studio/release-notes.md index f71842c9dc..3b7db0969c 100644 --- a/docs/en/studio/release-notes.md +++ b/docs/en/studio/release-notes.md @@ -9,7 +9,24 @@ This document contains **brief release notes** for each ABP Studio release. Release notes only include **major features** and **visible enhancements**. Therefore, they don't include all the development done in the related version. -## 3.0.8 (2026-07-28) Latest +## 3.0.10 (2026-08-10) Latest + +* Align dashboard refresh button with date picker in MudBlazor templates +* ABP Agent: Fix context compression problem +* Update version to release 3.0.10 + +## 3.0.9 (2026-08-06) + +* Sync React admin console template with OpenIddict generate access token UI +* Angular - Updating the version to 22 and fixing bugs on samples +* Use a per-connection in-memory SQLite database in template tests +* Fix MudBlazor MAUI Blazor template referencing Blazorise UI packages +* Add disk cleanup step to Azure DevOps pipelines +* Update version to 10.6.0 +* Fix author select showing `Guid.Empty` in MudBlazor Books sample +* Sync Admin Console PathBase support to React modern template + +## 3.0.8 (2026-07-28) * Add BLOB storage provider options * Improve custom LLM provider connection UX diff --git a/docs/en/studio/version-mapping.md b/docs/en/studio/version-mapping.md index 6f6a3551b6..b369ad52be 100644 --- a/docs/en/studio/version-mapping.md +++ b/docs/en/studio/version-mapping.md @@ -11,6 +11,7 @@ This document provides a general overview of the relationship between various ve | **ABP Studio Version** | **ABP Version of Startup Template** | |------------------------|---------------------------| +| 3.0.9 - 3.0.10 | 10.6.0 | | 3.0.6 - 3.0.8 | 10.5.0 | | 3.0.4 - 3.0.5 | 10.4.1 | | 3.0.3 | 10.4.0 |