mcp-use 1.3.7__tar.gz → 1.3.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mcp-use might be problematic. Click here for more details.
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.github/release-drafter.yml +2 -2
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.github/workflows/tests.yml +23 -3
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.github/workflows/update-readme.yml +3 -1
- {mcp_use-1.3.7 → mcp_use-1.3.9}/PKG-INFO +80 -57
- {mcp_use-1.3.7 → mcp_use-1.3.9}/README.md +78 -55
- {mcp_use-1.3.7/docs/guides → mcp_use-1.3.9/docs/advanced}/multi-server-setup.mdx +2 -2
- {mcp_use-1.3.7/docs/guides → mcp_use-1.3.9/docs/advanced}/security.mdx +1 -1
- {mcp_use-1.3.7/docs/essentials → mcp_use-1.3.9/docs/agent}/agent-configuration.mdx +1 -1
- mcp_use-1.3.9/docs/agent/server-manager.mdx +215 -0
- {mcp_use-1.3.7/docs/guides → mcp_use-1.3.9/docs/agent}/streaming.mdx +2 -2
- mcp_use-1.3.9/docs/agent/structured-output.mdx +61 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/api-reference/mcpagent.mdx +46 -6
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/api-reference/mcpclient.mdx +2 -2
- {mcp_use-1.3.7/docs/essentials → mcp_use-1.3.9/docs/client}/client-configuration.mdx +13 -106
- {mcp_use-1.3.7/docs/essentials → mcp_use-1.3.9/docs/client}/connection-types.mdx +2 -21
- mcp_use-1.3.9/docs/client/direct-tool-calls.mdx +235 -0
- {mcp_use-1.3.7/docs/essentials → mcp_use-1.3.9/docs/client}/elicitation.mdx +2 -2
- mcp_use-1.3.9/docs/client/logging.mdx +61 -0
- mcp_use-1.3.9/docs/client/notifications.mdx +111 -0
- mcp_use-1.3.9/docs/client/prompts.mdx +266 -0
- mcp_use-1.3.9/docs/client/resources.mdx +229 -0
- mcp_use-1.3.9/docs/client/sandbox.mdx +81 -0
- mcp_use-1.3.9/docs/client/tools.mdx +160 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/community/showcase.mdx +2 -2
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/docs.json +37 -17
- {mcp_use-1.3.7/docs/essentials → mcp_use-1.3.9/docs/getting-started}/configuration.mdx +7 -7
- {mcp_use-1.3.7/docs → mcp_use-1.3.9/docs/getting-started}/index.mdx +14 -14
- {mcp_use-1.3.7/docs → mcp_use-1.3.9/docs/getting-started}/installation.mdx +3 -3
- {mcp_use-1.3.7/docs → mcp_use-1.3.9/docs/getting-started}/quickstart.mdx +3 -3
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/troubleshooting/performance.mdx +2 -2
- {mcp_use-1.3.7 → mcp_use-1.3.9}/examples/airbnb_use.py +10 -15
- mcp_use-1.3.9/examples/direct_tool_call.py +59 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/examples/stream_example.py +5 -2
- mcp_use-1.3.9/examples/structured_output.py +78 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/__init__.py +0 -1
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/adapters/base.py +3 -3
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/adapters/langchain_adapter.py +5 -4
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/agents/__init__.py +2 -2
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/agents/mcpagent.py +257 -31
- mcp_use-1.3.9/mcp_use/agents/prompts/templates.py +41 -0
- mcp_use-1.3.9/mcp_use/agents/remote.py +296 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/client.py +20 -3
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/config.py +12 -8
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/connectors/base.py +100 -15
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/connectors/http.py +13 -2
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/connectors/sandbox.py +12 -6
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/connectors/stdio.py +11 -2
- mcp_use-1.3.9/mcp_use/errors/__init__.py +1 -0
- mcp_use-1.3.9/mcp_use/errors/error_formatting.py +29 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/managers/__init__.py +3 -5
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/managers/server_manager.py +46 -13
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/managers/tools/__init__.py +2 -4
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/managers/tools/connect_server.py +2 -1
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/managers/tools/disconnect_server.py +2 -1
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/managers/tools/list_servers_tool.py +2 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/session.py +70 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/telemetry/telemetry.py +1 -4
- {mcp_use-1.3.7 → mcp_use-1.3.9}/pyproject.toml +2 -2
- mcp_use-1.3.9/static/logo-gh.jpg +0 -0
- {mcp_use-1.3.7/tests/integration/transports/customStreaming → mcp_use-1.3.9/tests/integration/others}/test_custom_streaming_integration.py +10 -10
- mcp_use-1.3.9/tests/integration/primitives/test_discovery.py +70 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/primitives/test_elicitation.py +1 -1
- mcp_use-1.3.9/tests/integration/primitives/test_logging.py +21 -0
- mcp_use-1.3.9/tests/integration/primitives/test_notifications.py +22 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/primitives/test_prompts.py +1 -1
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/primitives/test_resources.py +3 -3
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/primitives/test_sampling.py +2 -2
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/primitives/test_tools.py +3 -8
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/servers_for_testing/primitive_server.py +71 -0
- mcp_use-1.3.7/tests/integration/transports/sse/test_sse_integration.py → mcp_use-1.3.9/tests/integration/transports/test_sse.py +3 -3
- mcp_use-1.3.7/tests/integration/transports/stdio/test_stdio_integration.py → mcp_use-1.3.9/tests/integration/transports/test_stdio.py +3 -3
- mcp_use-1.3.7/tests/integration/transports/streamableHttp/test_streamable_http_integration.py → mcp_use-1.3.9/tests/integration/transports/test_streamable_http.py +3 -3
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/unit/test_client.py +62 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/unit/test_http_connector.py +2 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/unit/test_sandbox_connector.py +2 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/unit/test_stdio_connector.py +2 -0
- mcp_use-1.3.7/docs/essentials/server-manager.mdx +0 -343
- mcp_use-1.3.7/mcp_use/agents/prompts/templates.py +0 -43
- mcp_use-1.3.7/mcp_use/managers/tools/use_tool.py +0 -154
- mcp_use-1.3.7/tests/integration/transports/customStreaming/__init__.py +0 -1
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.env.example +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.github/pull_request_template.md +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.github/workflows/changelog.yml +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.github/workflows/publish.yml +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.github/workflows/release-drafter.yml +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.github/workflows/stale.yml +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.gitignore +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/.pre-commit-config.yaml +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/CHANGELOG.md +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/CLAUDE.md +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/CODE_OF_CONDUCT.md +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/CONTRIBUTING.md +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/LICENSE +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/README.md +0 -0
- {mcp_use-1.3.7/docs/guides → mcp_use-1.3.9/docs/advanced}/building-custom-agents.mdx +0 -0
- {mcp_use-1.3.7/docs/guides → mcp_use-1.3.9/docs/advanced}/logging.mdx +0 -0
- {mcp_use-1.3.7/docs/essentials → mcp_use-1.3.9/docs/agent}/llm-integration.mdx +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/api-reference/adapters.mdx +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/api-reference/introduction.mdx +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/changelog.mdx +0 -0
- {mcp_use-1.3.7/docs/essentials → mcp_use-1.3.9/docs/client}/sampling.mdx +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/development/observability.mdx +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/development/telemetry.mdx +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/development.mdx +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/favicon.svg +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/fonts.css +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/01.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/02.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/configuration-dark.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/configuration-light.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/examples-dark.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/examples-light.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/hero-dark.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/hero-light.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/installation-dark.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/installation-light.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/quickstart-dark.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/images/quickstart-light.png +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/logo/dark.svg +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/logo/light.svg +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/logo/react.svg +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/snippets/snippet-intro.mdx +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/snippets/youtube-embed.mdx +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/troubleshooting/common-issues.mdx +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/docs/troubleshooting/connection-errors.mdx +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/examples/airbnb_mcp.json +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/examples/blender_use.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/examples/browser_use.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/examples/chat_example.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/examples/filesystem_use.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/examples/http_example.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/examples/mcp_everything.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/examples/multi_server_example.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/examples/sandbox_everything.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/adapters/__init__.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/agents/base.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/agents/prompts/system_prompt_builder.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/connectors/__init__.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/connectors/utils.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/connectors/websocket.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/logging.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/managers/tools/base_tool.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/managers/tools/get_active_server.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/managers/tools/search_tools.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/observability/__init__.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/observability/laminar.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/observability/langfuse.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/task_managers/__init__.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/task_managers/base.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/task_managers/sse.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/task_managers/stdio.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/task_managers/streamable_http.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/task_managers/websocket.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/telemetry/__init__.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/telemetry/events.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/telemetry/utils.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/types/sandbox.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/mcp_use/utils.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/pytest.ini +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/ruff.toml +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/static/logo_black.svg +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/static/logo_white.svg +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/conftest.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/__init__.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/conftest.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/servers_for_testing/__init__.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/servers_for_testing/custom_streaming_server.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/servers_for_testing/simple_server.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/integration/servers_for_testing/timeout_test_server.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/unit/test_config.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/unit/test_logging.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/unit/test_search_tools_issue_138.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/unit/test_session.py +0 -0
- {mcp_use-1.3.7 → mcp_use-1.3.9}/tests/unit/test_websocket_connection_manager.py +0 -0
|
@@ -53,7 +53,7 @@ jobs:
|
|
|
53
53
|
strategy:
|
|
54
54
|
fail-fast: false
|
|
55
55
|
matrix:
|
|
56
|
-
transport: [stdio, sse,
|
|
56
|
+
transport: [stdio, sse, streamable_http]
|
|
57
57
|
steps:
|
|
58
58
|
- uses: actions/checkout@v3
|
|
59
59
|
- name: Set up Python 3.11
|
|
@@ -68,7 +68,7 @@ jobs:
|
|
|
68
68
|
uv pip install --system .[dev,anthropic,openai,search,e2b]
|
|
69
69
|
- name: Run integration tests for ${{ matrix.transport }} transport
|
|
70
70
|
run: |
|
|
71
|
-
pytest tests/integration/transports
|
|
71
|
+
pytest tests/integration/transports/test_${{ matrix.transport }}.py
|
|
72
72
|
|
|
73
73
|
primitive-tests:
|
|
74
74
|
needs: lint
|
|
@@ -77,7 +77,7 @@ jobs:
|
|
|
77
77
|
strategy:
|
|
78
78
|
fail-fast: false
|
|
79
79
|
matrix:
|
|
80
|
-
primitive: [sampling, tools, resources, prompts, elicitation]
|
|
80
|
+
primitive: [sampling, tools, resources, prompts, elicitation, notifications]
|
|
81
81
|
steps:
|
|
82
82
|
- uses: actions/checkout@v3
|
|
83
83
|
- name: Set up Python 3.11
|
|
@@ -93,3 +93,23 @@ jobs:
|
|
|
93
93
|
- name: Run integration tests for ${{ matrix.primitive }} primitive
|
|
94
94
|
run: |
|
|
95
95
|
pytest tests/integration/primitives/test_${{ matrix.primitive }}.py
|
|
96
|
+
|
|
97
|
+
integration-tests:
|
|
98
|
+
needs: lint
|
|
99
|
+
name: "Integration"
|
|
100
|
+
runs-on: ubuntu-latest
|
|
101
|
+
steps:
|
|
102
|
+
- uses: actions/checkout@v3
|
|
103
|
+
- name: Set up Python 3.11
|
|
104
|
+
uses: actions/setup-python@v4
|
|
105
|
+
with:
|
|
106
|
+
python-version: "3.11"
|
|
107
|
+
- name: Install uv
|
|
108
|
+
run: |
|
|
109
|
+
pip install uv
|
|
110
|
+
- name: Install dependencies
|
|
111
|
+
run: |
|
|
112
|
+
uv pip install --system .[dev,anthropic,openai,search,e2b]
|
|
113
|
+
- name: Run other integration tests
|
|
114
|
+
run: |
|
|
115
|
+
pytest tests/integration/others/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-use
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.9
|
|
4
4
|
Summary: MCP Library for LLMs
|
|
5
5
|
Author-email: Pietro Zullo <pietro.zullo@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -17,7 +17,7 @@ Requires-Python: >=3.11
|
|
|
17
17
|
Requires-Dist: aiohttp>=3.9.0
|
|
18
18
|
Requires-Dist: jsonschema-pydantic>=0.1.0
|
|
19
19
|
Requires-Dist: langchain>=0.1.0
|
|
20
|
-
Requires-Dist: mcp>=1.
|
|
20
|
+
Requires-Dist: mcp>=1.10.0
|
|
21
21
|
Requires-Dist: posthog>=4.8.0
|
|
22
22
|
Requires-Dist: pydantic>=2.0.0
|
|
23
23
|
Requires-Dist: python-dotenv>=1.0.0
|
|
@@ -46,25 +46,30 @@ Description-Content-Type: text/markdown
|
|
|
46
46
|
<div align="center">
|
|
47
47
|
<div align="center" style="margin: 0 auto; max-width: 80%;">
|
|
48
48
|
<picture>
|
|
49
|
-
<source media="(prefers-color-scheme: dark)" srcset="static/
|
|
50
|
-
<source media="(prefers-color-scheme: light)" srcset="static/
|
|
51
|
-
<img alt="mcp use logo" src="./static/logo-
|
|
49
|
+
<source media="(prefers-color-scheme: dark)" srcset="static/logo-gh.jpg">
|
|
50
|
+
<source media="(prefers-color-scheme: light)" srcset="static/logo-gh.jpg">
|
|
51
|
+
<img alt="mcp use logo" src="./static/logo-gh.jpg" width="80%" style="margin: 20px auto;">
|
|
52
52
|
</picture>
|
|
53
53
|
</div>
|
|
54
54
|
|
|
55
55
|
<br>
|
|
56
56
|
|
|
57
|
-
#
|
|
57
|
+
# Create MCP Clients and Agents
|
|
58
58
|
|
|
59
|
+
<p align="center">
|
|
60
|
+
<a href="https://www.producthunt.com/products/mcp-use?embed=true&utm_source=badge-featured&utm_medium=badge&utm_source=badge-mcp-use" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1002629&theme=neutral&t=1754609432704" alt="mcp-use - Open source SDK and infra for MCP servers & agents | Product Hunt" style="width: 150px; height: 32px;" width="150" height="32" /></a>
|
|
61
|
+
</p>
|
|
59
62
|
<p align="center">
|
|
60
63
|
<a href="https://github.com/pietrozullo/mcp-use/stargazers" alt="GitHub stars">
|
|
61
64
|
<img src="https://img.shields.io/github/stars/pietrozullo/mcp-use?style=social" /></a>
|
|
65
|
+
<a href="https://pypi.org/project/mcp_use/" alt="PyPI Downloads">
|
|
66
|
+
<img src="https://static.pepy.tech/badge/mcp-use" /></a>
|
|
62
67
|
<a href="https://pypi.org/project/mcp_use/" alt="PyPI Version">
|
|
63
68
|
<img src="https://img.shields.io/pypi/v/mcp_use.svg"/></a>
|
|
69
|
+
<a href="https://github.com/mcp-use/mcp-use-ts" alt="TypeScript">
|
|
70
|
+
<img src="https://img.shields.io/badge/TypeScript-mcp--use-3178C6?logo=typescript&logoColor=white" /></a>
|
|
64
71
|
<a href="https://github.com/pietrozullo/mcp-use/blob/main/LICENSE" alt="License">
|
|
65
72
|
<img src="https://img.shields.io/github/license/pietrozullo/mcp-use" /></a>
|
|
66
|
-
<a href="https://pypi.org/project/mcp_use/" alt="PyPI Downloads">
|
|
67
|
-
<img src="https://static.pepy.tech/badge/mcp-use" /></a>
|
|
68
73
|
<a href="https://docs.mcp-use.com" alt="Documentation">
|
|
69
74
|
<img src="https://img.shields.io/badge/docs-mcp--use.com-blue" /></a>
|
|
70
75
|
<a href="https://mcp-use.com" alt="Website">
|
|
@@ -84,15 +89,14 @@ Description-Content-Type: text/markdown
|
|
|
84
89
|
|
|
85
90
|
💡 Let developers easily connect any LLM to tools like web browsing, file operations, and more.
|
|
86
91
|
|
|
87
|
-
-
|
|
92
|
+
- If you want to get started quickly check out [mcp-use.com website](https://mcp-use.com/) to build and deploy agents with your favorite MCP servers.
|
|
88
93
|
- Visit the [mcp-use docs](https://docs.mcp-use.com/) to get started with mcp-use library
|
|
94
|
+
- For the TypeScript version, visit [mcp-use-ts](https://github.com/mcp-use/mcp-use-ts)
|
|
89
95
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
| Supports | |
|
|
93
|
-
| :--- | :--- |
|
|
96
|
+
| Supports | |
|
|
97
|
+
| :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
94
98
|
| **Primitives** | [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
|
|
95
|
-
| **Transports** | [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml)
|
|
99
|
+
| **Transports** | [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
|
|
96
100
|
|
|
97
101
|
## Features
|
|
98
102
|
|
|
@@ -418,29 +422,7 @@ if __name__ == "__main__":
|
|
|
418
422
|
asyncio.run(run_blender_example())
|
|
419
423
|
```
|
|
420
424
|
|
|
421
|
-
# Configuration
|
|
422
|
-
|
|
423
|
-
MCP-Use supports initialization from configuration files, making it easy to manage and switch between different MCP server setups:
|
|
424
|
-
|
|
425
|
-
```python
|
|
426
|
-
import asyncio
|
|
427
|
-
from mcp_use import create_session_from_config
|
|
428
|
-
|
|
429
|
-
async def main():
|
|
430
|
-
# Create an MCP session from a config file
|
|
431
|
-
session = create_session_from_config("mcp-config.json")
|
|
432
|
-
|
|
433
|
-
# Initialize the session
|
|
434
|
-
await session.initialize()
|
|
435
|
-
|
|
436
|
-
# Use the session...
|
|
437
|
-
|
|
438
|
-
# Disconnect when done
|
|
439
|
-
await session.disconnect()
|
|
440
|
-
|
|
441
|
-
if __name__ == "__main__":
|
|
442
|
-
asyncio.run(main())
|
|
443
|
-
```
|
|
425
|
+
# Configuration Support
|
|
444
426
|
|
|
445
427
|
## HTTP Connection Example
|
|
446
428
|
|
|
@@ -696,6 +678,47 @@ The `SandboxOptions` type provides configuration for the sandbox environment:
|
|
|
696
678
|
- **Consistent environment**: Ensure consistent behavior across different systems
|
|
697
679
|
- **Resource efficiency**: Offload resource-intensive tasks to cloud infrastructure
|
|
698
680
|
|
|
681
|
+
# Direct Tool Calls (Without LLM)
|
|
682
|
+
|
|
683
|
+
You can call MCP server tools directly without an LLM when you need programmatic control:
|
|
684
|
+
|
|
685
|
+
```python
|
|
686
|
+
import asyncio
|
|
687
|
+
from mcp_use import MCPClient
|
|
688
|
+
|
|
689
|
+
async def call_tool_example():
|
|
690
|
+
config = {
|
|
691
|
+
"mcpServers": {
|
|
692
|
+
"everything": {
|
|
693
|
+
"command": "npx",
|
|
694
|
+
"args": ["-y", "@modelcontextprotocol/server-everything"],
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
client = MCPClient.from_dict(config)
|
|
700
|
+
|
|
701
|
+
try:
|
|
702
|
+
await client.create_all_sessions()
|
|
703
|
+
session = client.get_session("everything")
|
|
704
|
+
|
|
705
|
+
# Call tool directly
|
|
706
|
+
result = await session.call_tool(
|
|
707
|
+
name="add",
|
|
708
|
+
arguments={"a": 1, "b": 2}
|
|
709
|
+
)
|
|
710
|
+
|
|
711
|
+
print(f"Result: {result.content[0].text}") # Output: 3
|
|
712
|
+
|
|
713
|
+
finally:
|
|
714
|
+
await client.close_all_sessions()
|
|
715
|
+
|
|
716
|
+
if __name__ == "__main__":
|
|
717
|
+
asyncio.run(call_tool_example())
|
|
718
|
+
```
|
|
719
|
+
|
|
720
|
+
See the complete example: [examples/direct_tool_call.py](examples/direct_tool_call.py)
|
|
721
|
+
|
|
699
722
|
# Build a Custom Agent:
|
|
700
723
|
|
|
701
724
|
You can also build your own custom agent using the LangChain adapter:
|
|
@@ -813,44 +836,44 @@ Thanks to all our amazing contributors!
|
|
|
813
836
|
<th>Stars</th>
|
|
814
837
|
</tr>
|
|
815
838
|
<tr>
|
|
816
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
817
|
-
<td>⭐
|
|
839
|
+
<td><img src="https://avatars.githubusercontent.com/u/38653995?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/patchy631/ai-engineering-hub"><strong>patchy631/ai-engineering-hub</strong></a></td>
|
|
840
|
+
<td>⭐ 15920</td>
|
|
818
841
|
</tr>
|
|
819
842
|
<tr>
|
|
820
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
821
|
-
<td>⭐
|
|
843
|
+
<td><img src="https://avatars.githubusercontent.com/u/170207473?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/tavily-ai/meeting-prep-agent"><strong>tavily-ai/meeting-prep-agent</strong></a></td>
|
|
844
|
+
<td>⭐ 129</td>
|
|
822
845
|
</tr>
|
|
823
846
|
<tr>
|
|
824
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
825
|
-
<td>⭐
|
|
847
|
+
<td><img src="https://avatars.githubusercontent.com/u/164294848?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/buildfastwithai/gen-ai-experiments"><strong>buildfastwithai/gen-ai-experiments</strong></a></td>
|
|
848
|
+
<td>⭐ 93</td>
|
|
826
849
|
</tr>
|
|
827
850
|
<tr>
|
|
828
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
829
|
-
<td>⭐
|
|
851
|
+
<td><img src="https://avatars.githubusercontent.com/u/187057607?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/hud-evals/hud-python"><strong>hud-evals/hud-python</strong></a></td>
|
|
852
|
+
<td>⭐ 76</td>
|
|
830
853
|
</tr>
|
|
831
854
|
<tr>
|
|
832
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
833
|
-
<td>⭐
|
|
855
|
+
<td><img src="https://avatars.githubusercontent.com/u/20041231?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/krishnaik06/MCP-CRASH-Course"><strong>krishnaik06/MCP-CRASH-Course</strong></a></td>
|
|
856
|
+
<td>⭐ 61</td>
|
|
834
857
|
</tr>
|
|
835
858
|
<tr>
|
|
836
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
837
|
-
<td>⭐
|
|
859
|
+
<td><img src="https://avatars.githubusercontent.com/u/54944174?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/larksuite/lark-samples"><strong>larksuite/lark-samples</strong></a></td>
|
|
860
|
+
<td>⭐ 35</td>
|
|
838
861
|
</tr>
|
|
839
862
|
<tr>
|
|
840
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
841
|
-
<td>⭐
|
|
863
|
+
<td><img src="https://avatars.githubusercontent.com/u/892404?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/truemagic-coder/solana-agent-app"><strong>truemagic-coder/solana-agent-app</strong></a></td>
|
|
864
|
+
<td>⭐ 30</td>
|
|
842
865
|
</tr>
|
|
843
866
|
<tr>
|
|
844
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
845
|
-
<td>⭐
|
|
867
|
+
<td><img src="https://avatars.githubusercontent.com/u/8344498?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/schogini/techietalksai"><strong>schogini/techietalksai</strong></a></td>
|
|
868
|
+
<td>⭐ 24</td>
|
|
846
869
|
</tr>
|
|
847
870
|
<tr>
|
|
848
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
849
|
-
<td>⭐
|
|
871
|
+
<td><img src="https://avatars.githubusercontent.com/u/201161342?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/autometa-dev/whatsapp-mcp-voice-agent"><strong>autometa-dev/whatsapp-mcp-voice-agent</strong></a></td>
|
|
872
|
+
<td>⭐ 22</td>
|
|
850
873
|
</tr>
|
|
851
874
|
<tr>
|
|
852
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
853
|
-
<td>⭐
|
|
875
|
+
<td><img src="https://avatars.githubusercontent.com/u/100749943?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/Deniscartin/mcp-cli"><strong>Deniscartin/mcp-cli</strong></a></td>
|
|
876
|
+
<td>⭐ 19</td>
|
|
854
877
|
</tr>
|
|
855
878
|
</table>
|
|
856
879
|
|
|
@@ -1,25 +1,30 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
<div align="center" style="margin: 0 auto; max-width: 80%;">
|
|
3
3
|
<picture>
|
|
4
|
-
<source media="(prefers-color-scheme: dark)" srcset="static/
|
|
5
|
-
<source media="(prefers-color-scheme: light)" srcset="static/
|
|
6
|
-
<img alt="mcp use logo" src="./static/logo-
|
|
4
|
+
<source media="(prefers-color-scheme: dark)" srcset="static/logo-gh.jpg">
|
|
5
|
+
<source media="(prefers-color-scheme: light)" srcset="static/logo-gh.jpg">
|
|
6
|
+
<img alt="mcp use logo" src="./static/logo-gh.jpg" width="80%" style="margin: 20px auto;">
|
|
7
7
|
</picture>
|
|
8
8
|
</div>
|
|
9
9
|
|
|
10
10
|
<br>
|
|
11
11
|
|
|
12
|
-
#
|
|
12
|
+
# Create MCP Clients and Agents
|
|
13
13
|
|
|
14
|
+
<p align="center">
|
|
15
|
+
<a href="https://www.producthunt.com/products/mcp-use?embed=true&utm_source=badge-featured&utm_medium=badge&utm_source=badge-mcp-use" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1002629&theme=neutral&t=1754609432704" alt="mcp-use - Open source SDK and infra for MCP servers & agents | Product Hunt" style="width: 150px; height: 32px;" width="150" height="32" /></a>
|
|
16
|
+
</p>
|
|
14
17
|
<p align="center">
|
|
15
18
|
<a href="https://github.com/pietrozullo/mcp-use/stargazers" alt="GitHub stars">
|
|
16
19
|
<img src="https://img.shields.io/github/stars/pietrozullo/mcp-use?style=social" /></a>
|
|
20
|
+
<a href="https://pypi.org/project/mcp_use/" alt="PyPI Downloads">
|
|
21
|
+
<img src="https://static.pepy.tech/badge/mcp-use" /></a>
|
|
17
22
|
<a href="https://pypi.org/project/mcp_use/" alt="PyPI Version">
|
|
18
23
|
<img src="https://img.shields.io/pypi/v/mcp_use.svg"/></a>
|
|
24
|
+
<a href="https://github.com/mcp-use/mcp-use-ts" alt="TypeScript">
|
|
25
|
+
<img src="https://img.shields.io/badge/TypeScript-mcp--use-3178C6?logo=typescript&logoColor=white" /></a>
|
|
19
26
|
<a href="https://github.com/pietrozullo/mcp-use/blob/main/LICENSE" alt="License">
|
|
20
27
|
<img src="https://img.shields.io/github/license/pietrozullo/mcp-use" /></a>
|
|
21
|
-
<a href="https://pypi.org/project/mcp_use/" alt="PyPI Downloads">
|
|
22
|
-
<img src="https://static.pepy.tech/badge/mcp-use" /></a>
|
|
23
28
|
<a href="https://docs.mcp-use.com" alt="Documentation">
|
|
24
29
|
<img src="https://img.shields.io/badge/docs-mcp--use.com-blue" /></a>
|
|
25
30
|
<a href="https://mcp-use.com" alt="Website">
|
|
@@ -39,15 +44,14 @@
|
|
|
39
44
|
|
|
40
45
|
💡 Let developers easily connect any LLM to tools like web browsing, file operations, and more.
|
|
41
46
|
|
|
42
|
-
-
|
|
47
|
+
- If you want to get started quickly check out [mcp-use.com website](https://mcp-use.com/) to build and deploy agents with your favorite MCP servers.
|
|
43
48
|
- Visit the [mcp-use docs](https://docs.mcp-use.com/) to get started with mcp-use library
|
|
49
|
+
- For the TypeScript version, visit [mcp-use-ts](https://github.com/mcp-use/mcp-use-ts)
|
|
44
50
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
| Supports | |
|
|
48
|
-
| :--- | :--- |
|
|
51
|
+
| Supports | |
|
|
52
|
+
| :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
49
53
|
| **Primitives** | [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
|
|
50
|
-
| **Transports** | [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml)
|
|
54
|
+
| **Transports** | [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
|
|
51
55
|
|
|
52
56
|
## Features
|
|
53
57
|
|
|
@@ -373,29 +377,7 @@ if __name__ == "__main__":
|
|
|
373
377
|
asyncio.run(run_blender_example())
|
|
374
378
|
```
|
|
375
379
|
|
|
376
|
-
# Configuration
|
|
377
|
-
|
|
378
|
-
MCP-Use supports initialization from configuration files, making it easy to manage and switch between different MCP server setups:
|
|
379
|
-
|
|
380
|
-
```python
|
|
381
|
-
import asyncio
|
|
382
|
-
from mcp_use import create_session_from_config
|
|
383
|
-
|
|
384
|
-
async def main():
|
|
385
|
-
# Create an MCP session from a config file
|
|
386
|
-
session = create_session_from_config("mcp-config.json")
|
|
387
|
-
|
|
388
|
-
# Initialize the session
|
|
389
|
-
await session.initialize()
|
|
390
|
-
|
|
391
|
-
# Use the session...
|
|
392
|
-
|
|
393
|
-
# Disconnect when done
|
|
394
|
-
await session.disconnect()
|
|
395
|
-
|
|
396
|
-
if __name__ == "__main__":
|
|
397
|
-
asyncio.run(main())
|
|
398
|
-
```
|
|
380
|
+
# Configuration Support
|
|
399
381
|
|
|
400
382
|
## HTTP Connection Example
|
|
401
383
|
|
|
@@ -651,6 +633,47 @@ The `SandboxOptions` type provides configuration for the sandbox environment:
|
|
|
651
633
|
- **Consistent environment**: Ensure consistent behavior across different systems
|
|
652
634
|
- **Resource efficiency**: Offload resource-intensive tasks to cloud infrastructure
|
|
653
635
|
|
|
636
|
+
# Direct Tool Calls (Without LLM)
|
|
637
|
+
|
|
638
|
+
You can call MCP server tools directly without an LLM when you need programmatic control:
|
|
639
|
+
|
|
640
|
+
```python
|
|
641
|
+
import asyncio
|
|
642
|
+
from mcp_use import MCPClient
|
|
643
|
+
|
|
644
|
+
async def call_tool_example():
|
|
645
|
+
config = {
|
|
646
|
+
"mcpServers": {
|
|
647
|
+
"everything": {
|
|
648
|
+
"command": "npx",
|
|
649
|
+
"args": ["-y", "@modelcontextprotocol/server-everything"],
|
|
650
|
+
}
|
|
651
|
+
}
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
client = MCPClient.from_dict(config)
|
|
655
|
+
|
|
656
|
+
try:
|
|
657
|
+
await client.create_all_sessions()
|
|
658
|
+
session = client.get_session("everything")
|
|
659
|
+
|
|
660
|
+
# Call tool directly
|
|
661
|
+
result = await session.call_tool(
|
|
662
|
+
name="add",
|
|
663
|
+
arguments={"a": 1, "b": 2}
|
|
664
|
+
)
|
|
665
|
+
|
|
666
|
+
print(f"Result: {result.content[0].text}") # Output: 3
|
|
667
|
+
|
|
668
|
+
finally:
|
|
669
|
+
await client.close_all_sessions()
|
|
670
|
+
|
|
671
|
+
if __name__ == "__main__":
|
|
672
|
+
asyncio.run(call_tool_example())
|
|
673
|
+
```
|
|
674
|
+
|
|
675
|
+
See the complete example: [examples/direct_tool_call.py](examples/direct_tool_call.py)
|
|
676
|
+
|
|
654
677
|
# Build a Custom Agent:
|
|
655
678
|
|
|
656
679
|
You can also build your own custom agent using the LangChain adapter:
|
|
@@ -768,44 +791,44 @@ Thanks to all our amazing contributors!
|
|
|
768
791
|
<th>Stars</th>
|
|
769
792
|
</tr>
|
|
770
793
|
<tr>
|
|
771
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
772
|
-
<td>⭐
|
|
794
|
+
<td><img src="https://avatars.githubusercontent.com/u/38653995?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/patchy631/ai-engineering-hub"><strong>patchy631/ai-engineering-hub</strong></a></td>
|
|
795
|
+
<td>⭐ 15920</td>
|
|
773
796
|
</tr>
|
|
774
797
|
<tr>
|
|
775
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
776
|
-
<td>⭐
|
|
798
|
+
<td><img src="https://avatars.githubusercontent.com/u/170207473?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/tavily-ai/meeting-prep-agent"><strong>tavily-ai/meeting-prep-agent</strong></a></td>
|
|
799
|
+
<td>⭐ 129</td>
|
|
777
800
|
</tr>
|
|
778
801
|
<tr>
|
|
779
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
780
|
-
<td>⭐
|
|
802
|
+
<td><img src="https://avatars.githubusercontent.com/u/164294848?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/buildfastwithai/gen-ai-experiments"><strong>buildfastwithai/gen-ai-experiments</strong></a></td>
|
|
803
|
+
<td>⭐ 93</td>
|
|
781
804
|
</tr>
|
|
782
805
|
<tr>
|
|
783
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
784
|
-
<td>⭐
|
|
806
|
+
<td><img src="https://avatars.githubusercontent.com/u/187057607?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/hud-evals/hud-python"><strong>hud-evals/hud-python</strong></a></td>
|
|
807
|
+
<td>⭐ 76</td>
|
|
785
808
|
</tr>
|
|
786
809
|
<tr>
|
|
787
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
788
|
-
<td>⭐
|
|
810
|
+
<td><img src="https://avatars.githubusercontent.com/u/20041231?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/krishnaik06/MCP-CRASH-Course"><strong>krishnaik06/MCP-CRASH-Course</strong></a></td>
|
|
811
|
+
<td>⭐ 61</td>
|
|
789
812
|
</tr>
|
|
790
813
|
<tr>
|
|
791
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
792
|
-
<td>⭐
|
|
814
|
+
<td><img src="https://avatars.githubusercontent.com/u/54944174?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/larksuite/lark-samples"><strong>larksuite/lark-samples</strong></a></td>
|
|
815
|
+
<td>⭐ 35</td>
|
|
793
816
|
</tr>
|
|
794
817
|
<tr>
|
|
795
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
796
|
-
<td>⭐
|
|
818
|
+
<td><img src="https://avatars.githubusercontent.com/u/892404?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/truemagic-coder/solana-agent-app"><strong>truemagic-coder/solana-agent-app</strong></a></td>
|
|
819
|
+
<td>⭐ 30</td>
|
|
797
820
|
</tr>
|
|
798
821
|
<tr>
|
|
799
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
800
|
-
<td>⭐
|
|
822
|
+
<td><img src="https://avatars.githubusercontent.com/u/8344498?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/schogini/techietalksai"><strong>schogini/techietalksai</strong></a></td>
|
|
823
|
+
<td>⭐ 24</td>
|
|
801
824
|
</tr>
|
|
802
825
|
<tr>
|
|
803
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
804
|
-
<td>⭐
|
|
826
|
+
<td><img src="https://avatars.githubusercontent.com/u/201161342?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/autometa-dev/whatsapp-mcp-voice-agent"><strong>autometa-dev/whatsapp-mcp-voice-agent</strong></a></td>
|
|
827
|
+
<td>⭐ 22</td>
|
|
805
828
|
</tr>
|
|
806
829
|
<tr>
|
|
807
|
-
<td><img src="https://avatars.githubusercontent.com/u/
|
|
808
|
-
<td>⭐
|
|
830
|
+
<td><img src="https://avatars.githubusercontent.com/u/100749943?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/Deniscartin/mcp-cli"><strong>Deniscartin/mcp-cli</strong></a></td>
|
|
831
|
+
<td>⭐ 19</td>
|
|
809
832
|
</tr>
|
|
810
833
|
</table>
|
|
811
834
|
|
|
@@ -439,10 +439,10 @@ agent = MCPAgent(
|
|
|
439
439
|
## Next Steps
|
|
440
440
|
|
|
441
441
|
<CardGroup cols={3}>
|
|
442
|
-
<Card title="Server Manager" icon="server" href="/
|
|
442
|
+
<Card title="Server Manager" icon="server" href="/agent/server-manager">
|
|
443
443
|
Learn more about dynamic server selection and management
|
|
444
444
|
</Card>
|
|
445
|
-
<Card title="Security Guide" icon="shield" href="/
|
|
445
|
+
<Card title="Security Guide" icon="shield" href="/advanced/security">
|
|
446
446
|
Best practices for secure multi-server configurations
|
|
447
447
|
</Card>
|
|
448
448
|
<Card title="Performance" icon="zap" href="/troubleshooting/performance">
|
|
@@ -580,7 +580,7 @@ def secure_command_args(command: str, args: List[str]) -> List[str]:
|
|
|
580
580
|
## Next Steps
|
|
581
581
|
|
|
582
582
|
<CardGroup cols={3}>
|
|
583
|
-
<Card title="Configuration Guide" icon="gear" href="/
|
|
583
|
+
<Card title="Configuration Guide" icon="gear" href="/getting-started/configuration">
|
|
584
584
|
Learn secure configuration practices for MCP servers
|
|
585
585
|
</Card>
|
|
586
586
|
<Card title="Deployment Guide" icon="rocket" href="/development">
|
|
@@ -7,7 +7,7 @@ icon: "brain"
|
|
|
7
7
|
# Agent Configuration
|
|
8
8
|
|
|
9
9
|
<Info>
|
|
10
|
-
This guide covers MCPAgent configuration options for customizing agent behavior and LLM integration. For client configuration, see the [Client Configuration](/
|
|
10
|
+
This guide covers MCPAgent configuration options for customizing agent behavior and LLM integration. For client configuration, see the [Client Configuration](/client/client-configuration) guide.
|
|
11
11
|
</Info>
|
|
12
12
|
|
|
13
13
|
## API Keys
|