llms.txt Content
# Gumloop
## Docs
- [Attach or update an agent MCP server](https://docs.gumloop.com/api-reference/agents/attach-agent-mcp-server.md): Attach an MCP server (connector) to an agent, or update its configuration if it's already attached (upsert).
- [Create agent](https://docs.gumloop.com/api-reference/agents/create-agent.md): Create a new agent. The authenticated caller must have permission to create agents on the target team.
- [Detach an agent MCP server](https://docs.gumloop.com/api-reference/agents/detach-agent-mcp-server.md): Detach an MCP server (connector) from an agent. This is idempotent — detaching a server that isn't attached returns `detached: false` rather than an error.
- [List agent MCP servers](https://docs.gumloop.com/api-reference/agents/list-agent-mcp-servers.md): List the MCP servers (connectors) attached to an agent. Sensitive fields such as `secret_id` and `mcp_server_url` are scrubbed from the response.
- [List agents](https://docs.gumloop.com/api-reference/agents/list-agents.md): List agents the caller has access to. Filter by team, search by name, or narrow to agents that use a specific tool or trigger.
- [Retrieve agent](https://docs.gumloop.com/api-reference/agents/retrieve-agent.md): Retrieve a single agent by ID.
- [Update agent](https://docs.gumloop.com/api-reference/agents/update-agent.md): Update an existing agent. Only fields included in the request body are changed; omitted fields are left untouched.
- [Attach or detach agent skills](https://docs.gumloop.com/api-reference/agents/update-agent-skills.md): Attach and/or detach skills on an agent using deltas. This is **not** a replace-list: skills you don't mention are left untouched.
- [Download artifact](https://docs.gumloop.com/api-reference/artifacts/download-artifact.md): Returns a signed download URL for an artifact, plus its filename, media type, and size. Follow `download_url` to fetch the file bytes.
- [List artifacts](https://docs.gumloop.com/api-reference/artifacts/list-arti