Developer Toolkit
Official .NET SDK for building applications on the Unified Platform. Type-safe APIs, rich documentation, and production-ready components.
Everything you need to build on Unified
.NET Native
Built for .NET 8+ with full async/await support and modern C# features.
Type-Safe APIs
Strongly-typed request/response models generated from OpenAPI specs.
Built-in Auth
OAuth2, API keys, and LDAP authentication out of the box.
Auto-Retry
Intelligent retry logic with exponential backoff for resilient apps.
Telemetry
OpenTelemetry integration for distributed tracing and metrics.
Rich Docs
XML documentation, IntelliSense, and comprehensive examples.
Get started in 60 seconds
Install the SDK from our internal NuGet feed and start building with type-safe APIs and full IntelliSense support.
- NuGet package (dotnet add)
- Swagger-generated clients
- Full IntelliSense support
๐ฆ Served SDK v10.0.0 - Developer Toolkit
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Determining projects to restore...
โ Resolved Served.SDK 10.0.0 from nuget.unifiedhq.ai
โ (Also available on nuget.org)
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ // IntelliSense: 42 users loaded
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Package installed successfully
Clean, intuitive API design
using Served.SDK;
using Served.SDK.Identity;
// Initialize the client
var client = new ServedClient(options => {
options.ApiKey = Environment.GetEnvironmentVariable("SERVED_API_KEY");
options.BaseUrl = "https://api.unifiedhq.ai";
});
// Authenticate a user via LDAP
var authResult = await client.Ldap.AuthenticateAsync(
username: "thomas",
password: "********"
);
if (authResult.Success) {
Console.WriteLine($"Welcome, {authResult.User.DisplayName}!");
// Get user's groups
var groups = await client.Ldap.GetUserGroupsAsync(authResult.User.Id);
foreach (var group in groups) {
Console.WriteLine($" - {group.Name}");
}
}Modular packages for every use case
Served.SDK
Core SDK with all essential features
Served.MCP
MCP server for AI assistant integration
Served.EntityFrameworkCore
Database extensions and migrations
Served.Infrastructure
Core infrastructure and helpers
Built for .NET developers
Backend Services
Build microservices that integrate with Unified Platform.
CLI Tools
Create command-line tools with SDK authentication.
Web Applications
ASP.NET Core apps with built-in Unified identity.
Built for the .NET ecosystem
Ready to build on Unified?
Install the SDK and start building in minutes. Free for all developers.