agent-chef-mcp 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 User Kind
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,93 @@
1
+ <p align="center"><img src="https://raw.githubusercontent.com/coryshaw/agent-chef-mcp/main/logo.png" alt="Agent Chef" width="320"></p>
2
+
3
+ # Agent Chef MCP server
4
+
5
+ **Family meal planning run by your own AI agent.** Every week your agent proposes ten dinners, the household votes and
6
+ leaves feedback from personal links (no accounts), the top picks win, and Agent Chef builds the grocery list minus
7
+ what's already in the pantry. Your agent fills the cart; you approve checkout.
8
+
9
+ - Website & how it works: **https://agentchef.net**
10
+ - Remote MCP endpoint (Streamable HTTP): **`https://agentchef.net/mcp`**
11
+ - Official registry entry: `net.agentchef/agent-chef`
12
+
13
+ This repository is the public connector for the hosted service. The app itself runs at agentchef.net.
14
+
15
+ ## Connect
16
+
17
+ **OAuth (Claude.ai, ChatGPT, Claude Desktop):** add `https://agentchef.net/mcp` as a custom connector. The client discovers Agent Chef's authorization server, you sign in once and click **Allow**. No key needed.
18
+
19
+ **API key (Claude Code, Cursor, Codex, scripts):**
20
+
21
+ 1. Sign in at https://agentchef.net, create your household, and open **Settings → Agents**.
22
+ 2. Click **Add to Claude / Add to ChatGPT / Claude Code / Cursor**. You get an API key and exact steps for that agent.
23
+ 3. Tell your agent: **“Run Agent Chef.”** It calls `run_agent_chef`, receives the operating manual plus today's
24
+ checklist, schedules itself to run twice a day, and takes it from there.
25
+
26
+ Manual configuration for any MCP client:
27
+
28
+ ```json
29
+ {
30
+ "mcpServers": {
31
+ "agent-chef": {
32
+ "url": "https://agentchef.net/mcp",
33
+ "headers": { "Authorization": "Bearer <your API key>" }
34
+ }
35
+ }
36
+ }
37
+ ```
38
+
39
+ Clients that can't set headers can use `https://agentchef.net/mcp?key=<your API key>`. OAuth discovery lives at `/.well-known/oauth-protected-resource` and `/.well-known/oauth-authorization-server`.
40
+
41
+ ### Running locally over stdio
42
+
43
+ For clients that only speak stdio (and for directories that build servers in a container), this repo is a small Node
44
+ MCP server. It ships the full tool catalog, so `initialize`, `tools/list` and `prompts/list` work offline; tool calls run
45
+ on the hosted service for the household identified by `AGENT_CHEF_API_KEY`.
46
+
47
+ ```bash
48
+ npx -y agent-chef-mcp # or: git clone … && npm install && npm start
49
+ AGENT_CHEF_API_KEY=ac_... node server.js
50
+ ```
51
+
52
+ Docker:
53
+
54
+ ```bash
55
+ docker build -t agent-chef-mcp .
56
+ docker run -i -e AGENT_CHEF_API_KEY=ac_... agent-chef-mcp
57
+ ```
58
+
59
+ Client config for stdio:
60
+
61
+ ```json
62
+ {
63
+ "mcpServers": {
64
+ "agent-chef": {
65
+ "command": "npx",
66
+ "args": ["-y", "agent-chef-mcp"],
67
+ "env": { "AGENT_CHEF_API_KEY": "ac_..." }
68
+ }
69
+ }
70
+ }
71
+ ```
72
+
73
+ Without a key the server still lists everything; tool calls return a message explaining where to get a key.
74
+ `npm run sync` refreshes `catalog.json` from the live server; `npm test` runs a stdio smoke test.
75
+
76
+ ## Tools (34)
77
+
78
+ | Area | Tools |
79
+ |---|---|
80
+ | Run loop | `run_agent_chef`, `next_actions`, `get_instructions`, `record_schedule`, `dismiss_setup_checklist` |
81
+ | Access | `get_connected_agents`, `revoke_connected_agent` |
82
+ | Preferences | `get_recipe_preferences`, `update_recipe_preferences` |
83
+ | Household | `get_members`, `upsert_member`, `remove_member` |
84
+ | Pantry | `get_ingredients`, `update_ingredients` |
85
+ | Recipes | `search_recipes`, `get_recipe`, `update_recipe`, `import_recipe`, `get_favorite_recipes`, `favorite_recipe`, `get_past_recipes` |
86
+ | Weekly cycle | `propose_recipes`, `add_candidates`, `message_group`, `add_vote`, `add_ballot_feedback`, `get_past_votes`, `get_current_week`, `set_this_weeks_recipes`, `reopen_voting`, `set_voting_deadline`, `rate_recipe` |
87
+ | Shopping | `assemble_online_grocery_order`, `record_grocery_order` |
88
+
89
+ Prompts: `run_agent_chef` (also `weekly_cycle`).
90
+
91
+ ## Privacy & terms
92
+
93
+ https://agentchef.net/privacy · https://agentchef.net/terms · support@agentchef.net