We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MWG-Logan/Central-Memory-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Program.cs•702 B
using Azure.Data.Tables;
using CentralMemoryMcp.Functions.Services;
using CentralMemoryMcp.Functions.Storage;
using Microsoft.Azure.Functions.Worker.Builder;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
// Modern builder-based bootstrap using IHostApplicationBuilder
var builder = FunctionsApplication.CreateBuilder(args);
// Services
builder.ConfigureFunctionsWebApplication();
// Register application services
builder.Services.AddSingleton<ITableStorageService, TableStorageService>();
builder.Services.AddSingleton<IKnowledgeGraphService, KnowledgeGraphService>();
builder.Services.AddSingleton<IRelationService, RelationService>();
builder.Build().Run();