feat: add MoneyMap.Mcp project skeleton with stdio transport

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-20 18:21:47 -04:00
parent 62fa1d5c4c
commit f54c5ed54d
5 changed files with 86 additions and 0 deletions
@@ -0,0 +1,15 @@
using Microsoft.Extensions.Configuration;
using MoneyMap.Services;
namespace MoneyMap.Mcp;
public class ConfigReceiptStorageOptions : IReceiptStorageOptions
{
public string ReceiptsBasePath { get; }
public ConfigReceiptStorageOptions(IConfiguration config)
{
ReceiptsBasePath = config["Receipts:StoragePath"]
?? throw new InvalidOperationException("Receipts:StoragePath not configured");
}
}