You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: bundle comments and file ignore
* fix: tests
* feat: ignore secret example
* feat: add pathsec dep
* refactor: ignore without code cleanup
* fix: example file should be included
* feat: doc updates
* fix: use cur dir
* feat: default to .mcpacignore
* fix: file logs minimal
* fix: console print for file list
* fix: lint and comments
* feat: more tests
* fix: docs and error logic
- Detection order: 1) `--ignore-file <path>` (highest precedence), 2) `.mcpacignore` in `--config-dir`, 3) `.mcpacignore` in the working directory (CWD).
276
+
- Patterns follow gitignore syntax and are evaluated relative to `--config-dir`.
Copy file name to clipboardExpand all lines: docs/cloud/overview.mdx
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,8 @@ description: "[In beta] Deploy and manage AI agents as MCP servers"
24
24
25
25
<Note>When packaging your mcp-agent app for the cloud, our CLI will be searching for `main.py`. The entire directory will be deployed, so you can reference other files and upload other assets.</Note>
26
26
27
+
<Note>You can optionally exclude files from the bundle using an ignore file (gitignore syntax). Precedence: 1) `--ignore-file <path>` (explicit override), 2) `.mcpacignore` in `--config-dir`, 3) `.mcpacignore` in the working directory (CWD).</Note>
28
+
27
29
2. Make sure you have either a `pyproject.toml` or a `requirements.txt` file in your app directory.
28
30
29
31
3. Mark your functions that you'd like to be tool calls with the `@app.tool` decorators
0 commit comments