diff --git a/main.go b/main.go index 1461a5ad7ccc7cd18a85d408aa23cde890d93dfd..2c485e368b8f42fe3bbbea9188cb20ec992cff32 100644 --- a/main.go +++ b/main.go @@ -15,10 +15,16 @@ import ( "github.com/mark3labs/mcp-go/server" ) +// Area represents a Lunatask area with its name and ID +type Area struct { + Name string `toml:"name"` + ID string `toml:"id"` +} + // Config holds the application's configuration loaded from TOML type Config struct { AccessToken string `toml:"access_token"` - AreaID string `toml:"area_id"` + Areas []Area `toml:"areas"` }