Calfeed — schedule text in, subscribable calendar out
Calfeed turns a written schedule (shifts, practices, classes, a season, an itinerary) into a hosted calendar link people subscribe to once in Apple, Google, or Outlook. Edits update live for every subscriber — no resending files.
Tool
create_calendar — pass plain text, get back a published calendar page with subscribe links. Messy input is fine: pasted emails, shift
grids, fixture lists. Handles overnight shifts, rotating patterns, and date lists with different time rules per weekday.
Setup
- Create an account at calfeed.ai
- Mint an access token at calfeed.ai/profile
- Add the server:
claude mcp add --transport http calfeed https://calfeed.ai/api/mcp \
--header "Authorization: Bearer cf_YOUR_TOKEN"
Or in any mcpServers config:
{
"mcpServers": {
"calfeed": {
"url": "https://calfeed.ai/api/mcp",
"headers": { "Authorization": "Bearer cf_YOUR_TOKEN" }
}
}
}
Example
"Create a calendar: camp runs June 8–July 31, Mon/Wed 11:45am–12:45pm, Fridays 8–9am scrimmage, all at Richfield Ice Arena"
One tool call → 21 events, published at a stable link, ready to share with the whole team.
More
- Connect instructions per client
- How calendar subscriptions work
- How often Apple and Google refresh subscribed calendars
(Remove the zero-width chars before the inner code fences — they're just escaping the nesting here.)
Server Config
{
"mcpServers": {
"calfeed": {
"url": "https://calfeed.ai/api/mcp",
"headers": {
"Authorization": "Bearer cf_YOUR_TOKEN"
}
}
}
}