Skip to content

Commit ad63add

Browse files
committed
modified docs
1 parent ed1886b commit ad63add

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

docs/docs/gpt-researcher/retrievers/mcp-configs.mdx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,16 @@ Each MCP configuration dictionary supports these keys:
8787

8888
| Key | Description | Example | Required |
8989
|-----|-------------|---------|----------|
90-
| `name` | Identifier for the MCP server | `"github"` | No |
90+
| `name` | Identifier for the MCP server | `"github"` | Yes |
9191
| `command` | Command to start the server | `"python"` | Yes* |
92-
| `args` | Arguments for the server command | `["-m", "my_server"]` | No |
92+
| `args` | Arguments for the server command | `["-m", "my_server"]` | Yes* |
9393
| `env` | Environment variables for the server | `{"API_KEY": "key"}` | No |
94-
| `connection_url` | URL for remote connections | `"wss://api.example.com"` | Yes* |
94+
| `connection_url` | URL for remote connections | `"wss://api.example.com"` | Yes** |
9595
| `connection_type` | Connection type (auto-detected) | `"websocket"` | No |
9696
| `connection_token` | Authentication token | `"bearer_token"` | No |
9797

98-
*Either `command` (for local servers) or `connection_url` (for remote servers) is required.
98+
**Local servers**: Require `name`, `command`, and `args`
99+
**Remote servers**: Require `name` and `connection_url`
99100

100101
## Examples
101102

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ gpt-researcher = { workspace = true }
6060

6161
[project]
6262
name = "gpt-researcher"
63-
version = "0.13.5"
63+
version = "0.14.0"
6464
description = "GPT Researcher is an autonomous agent designed for comprehensive online research on a variety of tasks."
6565
authors = [{ name = "Assaf Elovic", email = "[email protected]" }]
6666
license = { text = "MIT" }

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import find_packages, setup
22

3-
LATEST_VERSION = "0.13.5"
3+
LATEST_VERSION = "0.14.0"
44

55
exclude_packages = [
66
"selenium",

0 commit comments

Comments
 (0)