Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion docs/agent-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,15 @@ The `mcpServers` field specifies which Model Context Protocol (MCP) servers the
"GIT_CONFIG_GLOBAL": "/dev/null"
},
"timeout": 120000
}
},
"notion": {
"type": "http",
"url": "https://mcp.notion.com/mcp",
"headers": {
"header_name": "header_value"
},
"oauthScopes": []
},
}
}
```
Expand All @@ -78,6 +86,10 @@ Each MCP server configuration can include:
- `args` (optional): Arguments to pass to the command
- `env` (optional): Environment variables to set for the server
- `timeout` (optional): Timeout for each MCP request in milliseconds (default: 120000)
- `type` (optional): The transport type that is to be used by the mcp server. Currently this is one of http or stdio
- `url` (optional): The url to a remote server
- `headers` (optional): The default headers to be attached to every request to a remote server
- `oauthScopes` (optional): The scopes with which oauth is done. By default they are `['openid', 'mcp', 'profile', 'offline_access']`

## Tools Field

Expand Down
Loading