GroupDocs.Mcp.Core 26.4.1

Prefix Reserved
dotnet add package GroupDocs.Mcp.Core --version 26.4.1
                    
NuGet\Install-Package GroupDocs.Mcp.Core -Version 26.4.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GroupDocs.Mcp.Core" Version="26.4.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GroupDocs.Mcp.Core" Version="26.4.1" />
                    
Directory.Packages.props
<PackageReference Include="GroupDocs.Mcp.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add GroupDocs.Mcp.Core --version 26.4.1
                    
#r "nuget: GroupDocs.Mcp.Core, 26.4.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package GroupDocs.Mcp.Core@26.4.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=GroupDocs.Mcp.Core&version=26.4.1
                    
Install as a Cake Addin
#tool nuget:?package=GroupDocs.Mcp.Core&version=26.4.1
                    
Install as a Cake Tool

GroupDocs.Mcp.Core

Core abstractions for building MCP (Model Context Protocol) servers that expose GroupDocs document-processing APIs as AI-callable tools.

This package is a library — it does not start an MCP server by itself. It provides the shared infrastructure consumed by every GroupDocs product MCP server (Metadata, Parser, Viewer, Conversion, …).

What's inside

  • IFileStorage — pluggable storage abstraction (Local, S3, Azure Blob implementations live in sibling packages).
  • IFileResolver / FileResolver — resolves filePath (from storage) or fileContent (base64) into a stream.
  • McpConfig — runtime configuration: license path, size limits, URL expiry.
  • LicenseManager (abstract) — base class for per-product GroupDocs license application.
  • OutputHelper — text truncation and file-output formatting for tool results.
  • LoggingFileResolver / LoggingFileStorage — decorator wrappers with ILogger + ActivitySource telemetry.

Installation

dotnet add package GroupDocs.Mcp.Core
dotnet add package GroupDocs.Mcp.Local.Storage     # or AwsS3.Storage / AzureBlob.Storage

Minimal wiring

builder.Services
    .AddGroupDocsMcp(config =>
    {
        config.LicensePath = "/license/GroupDocs.Total.lic";
    })
    .AddLocalStorage();
Package Role
GroupDocs.Mcp.Local.Storage Filesystem IFileStorage
GroupDocs.Mcp.AwsS3.Storage Amazon S3 IFileStorage with presigned URLs
GroupDocs.Mcp.AzureBlob.Storage Azure Blob IFileStorage with SAS URLs

Source: https://github.com/groupdocs/GroupDocs.Mcp.Core License: MIT

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on GroupDocs.Mcp.Core:

Package Downloads
GroupDocs.Mcp.Local.Storage

Local filesystem storage provider for GroupDocs MCP Framework. Provides path-sandboxed file access with Docker environment variable auto-detection.

GroupDocs.Mcp.AwsS3.Storage

AWS S3 storage provider for GroupDocs MCP Framework. Supports presigned download URLs for output files.

GroupDocs.Mcp.AzureBlob.Storage

Azure Blob Storage provider for GroupDocs MCP Framework. Supports SAS download URLs for output files.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
26.4.1 283 4/21/2026
26.4.0 140 4/21/2026