Skip to content

Commit 8975629

Browse files
committed
updates doc on http servers
1 parent c90c87d commit 8975629

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

docs/agent-format.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,15 @@ The `mcpServers` field specifies which Model Context Protocol (MCP) servers the
6868
"GIT_CONFIG_GLOBAL": "/dev/null"
6969
},
7070
"timeout": 120000
71-
}
71+
},
72+
"notion": {
73+
"type": "http",
74+
"url": "https://mcp.notion.com/mcp",
75+
"headers": {
76+
"header_name": "header_value"
77+
},
78+
"oauthScopes": []
79+
},
7280
}
7381
}
7482
```
@@ -78,6 +86,10 @@ Each MCP server configuration can include:
7886
- `args` (optional): Arguments to pass to the command
7987
- `env` (optional): Environment variables to set for the server
8088
- `timeout` (optional): Timeout for each MCP request in milliseconds (default: 120000)
89+
- `type` (optional): The transport type that is to be used by the mcp server. Currently this is one of http or stdio
90+
- `url` (optional): The url to a remote server
91+
- `headers` (optional): The default headers to be attached to every request to a remote server
92+
- `oauthScopes` (optional): The scopes with which oauth is done. By default they are `['openid', 'mcp', 'profile', 'offline_access']`
8193

8294
## Tools Field
8395

0 commit comments

Comments
 (0)