mcp-use 1.3.8__tar.gz → 1.3.10__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.8 → mcp_use-1.3.10}/.github/release-drafter.yml +2 -2
- {mcp_use-1.3.8 → mcp_use-1.3.10}/.github/workflows/tests.yml +1 -1
- {mcp_use-1.3.8 → mcp_use-1.3.10}/PKG-INFO +73 -48
- {mcp_use-1.3.8 → mcp_use-1.3.10}/README.md +72 -47
- mcp_use-1.3.10/docs/agent/interactive-chat-patterns.mdx +272 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/agent/server-manager.mdx +52 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/api-reference/mcpagent.mdx +46 -6
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/client/client-configuration.mdx +12 -105
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/client/connection-types.mdx +2 -21
- mcp_use-1.3.10/docs/client/direct-tool-calls.mdx +235 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/client/elicitation.mdx +2 -2
- mcp_use-1.3.10/docs/client/logging.mdx +61 -0
- mcp_use-1.3.10/docs/client/notifications.mdx +111 -0
- mcp_use-1.3.10/docs/client/prompts.mdx +266 -0
- mcp_use-1.3.10/docs/client/resources.mdx +229 -0
- mcp_use-1.3.10/docs/client/sandbox.mdx +81 -0
- mcp_use-1.3.10/docs/client/tools.mdx +160 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/docs.json +25 -5
- mcp_use-1.3.10/examples/direct_tool_call.py +59 -0
- mcp_use-1.3.10/examples/simple_server_manager_use.py +112 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/__init__.py +6 -3
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/adapters/base.py +3 -3
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/adapters/langchain_adapter.py +5 -4
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/agents/mcpagent.py +101 -17
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/agents/remote.py +102 -14
- mcp_use-1.3.10/mcp_use/cli.py +581 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/client.py +15 -1
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/config.py +10 -8
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/connectors/base.py +100 -15
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/connectors/http.py +13 -2
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/connectors/sandbox.py +12 -6
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/connectors/stdio.py +11 -2
- mcp_use-1.3.10/mcp_use/errors/__init__.py +1 -0
- mcp_use-1.3.10/mcp_use/errors/error_formatting.py +29 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/logging.py +27 -12
- mcp_use-1.3.10/mcp_use/managers/base.py +36 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/managers/server_manager.py +3 -8
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/managers/tools/connect_server.py +2 -1
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/managers/tools/disconnect_server.py +2 -1
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/managers/tools/list_servers_tool.py +2 -0
- mcp_use-1.3.10/mcp_use/observability/__init__.py +9 -0
- mcp_use-1.3.10/mcp_use/observability/callbacks_manager.py +162 -0
- mcp_use-1.3.10/mcp_use/observability/laminar.py +42 -0
- mcp_use-1.3.10/mcp_use/observability/langfuse.py +59 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/session.py +70 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/telemetry/telemetry.py +1 -4
- {mcp_use-1.3.8 → mcp_use-1.3.10}/pyproject.toml +4 -1
- mcp_use-1.3.10/static/logo-gh.jpg +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/others/test_custom_streaming_integration.py +9 -9
- mcp_use-1.3.10/tests/integration/primitives/test_discovery.py +70 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/primitives/test_elicitation.py +1 -1
- mcp_use-1.3.10/tests/integration/primitives/test_logging.py +21 -0
- mcp_use-1.3.10/tests/integration/primitives/test_notifications.py +22 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/primitives/test_prompts.py +1 -1
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/primitives/test_resources.py +3 -3
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/primitives/test_sampling.py +2 -2
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/primitives/test_tools.py +3 -8
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/servers_for_testing/primitive_server.py +71 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/transports/test_sse.py +2 -2
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/transports/test_stdio.py +2 -2
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/transports/test_streamable_http.py +2 -2
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/unit/test_client.py +10 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/unit/test_http_connector.py +2 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/unit/test_sandbox_connector.py +2 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/unit/test_stdio_connector.py +2 -0
- mcp_use-1.3.8/mcp_use/observability/__init__.py +0 -8
- mcp_use-1.3.8/mcp_use/observability/laminar.py +0 -21
- mcp_use-1.3.8/mcp_use/observability/langfuse.py +0 -35
- {mcp_use-1.3.8 → mcp_use-1.3.10}/.env.example +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/.github/pull_request_template.md +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/.github/workflows/changelog.yml +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/.github/workflows/publish.yml +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/.github/workflows/release-drafter.yml +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/.github/workflows/stale.yml +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/.github/workflows/update-readme.yml +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/.gitignore +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/.pre-commit-config.yaml +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/CHANGELOG.md +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/CLAUDE.md +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/CODE_OF_CONDUCT.md +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/CONTRIBUTING.md +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/LICENSE +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/README.md +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/advanced/building-custom-agents.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/advanced/logging.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/advanced/multi-server-setup.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/advanced/security.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/agent/agent-configuration.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/agent/llm-integration.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/agent/streaming.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/agent/structured-output.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/api-reference/adapters.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/api-reference/introduction.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/api-reference/mcpclient.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/changelog.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/client/sampling.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/community/showcase.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/development/observability.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/development/telemetry.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/development.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/favicon.svg +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/fonts.css +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/getting-started/configuration.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/getting-started/index.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/getting-started/installation.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/getting-started/quickstart.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/01.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/02.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/configuration-dark.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/configuration-light.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/examples-dark.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/examples-light.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/hero-dark.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/hero-light.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/installation-dark.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/installation-light.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/quickstart-dark.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/images/quickstart-light.png +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/logo/dark.svg +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/logo/light.svg +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/logo/react.svg +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/snippets/snippet-intro.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/snippets/youtube-embed.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/troubleshooting/common-issues.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/troubleshooting/connection-errors.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/docs/troubleshooting/performance.mdx +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/airbnb_mcp.json +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/airbnb_use.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/blender_use.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/browser_use.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/chat_example.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/filesystem_use.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/http_example.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/mcp_everything.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/multi_server_example.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/sandbox_everything.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/stream_example.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/examples/structured_output.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/adapters/__init__.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/agents/__init__.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/agents/base.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/agents/prompts/system_prompt_builder.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/agents/prompts/templates.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/connectors/__init__.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/connectors/utils.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/connectors/websocket.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/managers/__init__.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/managers/tools/__init__.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/managers/tools/base_tool.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/managers/tools/get_active_server.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/managers/tools/search_tools.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/task_managers/__init__.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/task_managers/base.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/task_managers/sse.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/task_managers/stdio.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/task_managers/streamable_http.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/task_managers/websocket.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/telemetry/__init__.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/telemetry/events.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/telemetry/utils.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/types/sandbox.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/mcp_use/utils.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/pytest.ini +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/ruff.toml +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/static/logo_black.svg +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/static/logo_white.svg +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/conftest.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/__init__.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/conftest.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/servers_for_testing/__init__.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/servers_for_testing/custom_streaming_server.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/servers_for_testing/simple_server.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/integration/servers_for_testing/timeout_test_server.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/unit/test_config.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/unit/test_logging.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/unit/test_search_tools_issue_138.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/unit/test_session.py +0 -0
- {mcp_use-1.3.8 → mcp_use-1.3.10}/tests/unit/test_websocket_connection_manager.py +0 -0
|
@@ -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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-use
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.10
|
|
4
4
|
Summary: MCP Library for LLMs
|
|
5
5
|
Author-email: Pietro Zullo <pietro.zullo@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -46,25 +46,31 @@ 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
|
-
<
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
<div align="center">
|
|
56
|
+
<h2>🎉 <strong>We're LIVE on Product Hunt!</strong> 🎉</h2>
|
|
57
|
+
<p><strong>Support us today and help us reach #1!</strong></p>
|
|
58
|
+
<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: 220px; height: 54px;" width="250" height="54" /></a>
|
|
59
|
+
<p>👆 <em>Click to upvote and leave a comment!</em></p>
|
|
60
|
+
</div>
|
|
58
61
|
|
|
62
|
+
<h1 align="center">🚀 Create MCP Clients and Agents</h1>
|
|
59
63
|
<p align="center">
|
|
60
64
|
<a href="https://github.com/pietrozullo/mcp-use/stargazers" alt="GitHub stars">
|
|
61
65
|
<img src="https://img.shields.io/github/stars/pietrozullo/mcp-use?style=social" /></a>
|
|
66
|
+
<a href="https://pypi.org/project/mcp_use/" alt="PyPI Downloads">
|
|
67
|
+
<img src="https://static.pepy.tech/badge/mcp-use" /></a>
|
|
62
68
|
<a href="https://pypi.org/project/mcp_use/" alt="PyPI Version">
|
|
63
69
|
<img src="https://img.shields.io/pypi/v/mcp_use.svg"/></a>
|
|
70
|
+
<a href="https://github.com/mcp-use/mcp-use-ts" alt="TypeScript">
|
|
71
|
+
<img src="https://img.shields.io/badge/TypeScript-mcp--use-3178C6?logo=typescript&logoColor=white" /></a>
|
|
64
72
|
<a href="https://github.com/pietrozullo/mcp-use/blob/main/LICENSE" alt="License">
|
|
65
73
|
<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
74
|
<a href="https://docs.mcp-use.com" alt="Documentation">
|
|
69
75
|
<img src="https://img.shields.io/badge/docs-mcp--use.com-blue" /></a>
|
|
70
76
|
<a href="https://mcp-use.com" alt="Website">
|
|
@@ -88,10 +94,10 @@ Description-Content-Type: text/markdown
|
|
|
88
94
|
- Visit the [mcp-use docs](https://docs.mcp-use.com/) to get started with mcp-use library
|
|
89
95
|
- For the TypeScript version, visit [mcp-use-ts](https://github.com/mcp-use/mcp-use-ts)
|
|
90
96
|
|
|
91
|
-
| Supports
|
|
92
|
-
|
|
|
97
|
+
| Supports | |
|
|
98
|
+
| :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
93
99
|
| **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) |
|
|
94
|
-
| **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)
|
|
100
|
+
| **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) |
|
|
95
101
|
|
|
96
102
|
## Features
|
|
97
103
|
|
|
@@ -149,7 +155,7 @@ pip install mcp-use
|
|
|
149
155
|
Or install from source:
|
|
150
156
|
|
|
151
157
|
```bash
|
|
152
|
-
git clone https://github.com/
|
|
158
|
+
git clone https://github.com/mcp-use/mcp-use.git
|
|
153
159
|
cd mcp-use
|
|
154
160
|
pip install -e .
|
|
155
161
|
```
|
|
@@ -417,29 +423,7 @@ if __name__ == "__main__":
|
|
|
417
423
|
asyncio.run(run_blender_example())
|
|
418
424
|
```
|
|
419
425
|
|
|
420
|
-
# Configuration
|
|
421
|
-
|
|
422
|
-
MCP-Use supports initialization from configuration files, making it easy to manage and switch between different MCP server setups:
|
|
423
|
-
|
|
424
|
-
```python
|
|
425
|
-
import asyncio
|
|
426
|
-
from mcp_use import create_session_from_config
|
|
427
|
-
|
|
428
|
-
async def main():
|
|
429
|
-
# Create an MCP session from a config file
|
|
430
|
-
session = create_session_from_config("mcp-config.json")
|
|
431
|
-
|
|
432
|
-
# Initialize the session
|
|
433
|
-
await session.initialize()
|
|
434
|
-
|
|
435
|
-
# Use the session...
|
|
436
|
-
|
|
437
|
-
# Disconnect when done
|
|
438
|
-
await session.disconnect()
|
|
439
|
-
|
|
440
|
-
if __name__ == "__main__":
|
|
441
|
-
asyncio.run(main())
|
|
442
|
-
```
|
|
426
|
+
# Configuration Support
|
|
443
427
|
|
|
444
428
|
## HTTP Connection Example
|
|
445
429
|
|
|
@@ -695,6 +679,47 @@ The `SandboxOptions` type provides configuration for the sandbox environment:
|
|
|
695
679
|
- **Consistent environment**: Ensure consistent behavior across different systems
|
|
696
680
|
- **Resource efficiency**: Offload resource-intensive tasks to cloud infrastructure
|
|
697
681
|
|
|
682
|
+
# Direct Tool Calls (Without LLM)
|
|
683
|
+
|
|
684
|
+
You can call MCP server tools directly without an LLM when you need programmatic control:
|
|
685
|
+
|
|
686
|
+
```python
|
|
687
|
+
import asyncio
|
|
688
|
+
from mcp_use import MCPClient
|
|
689
|
+
|
|
690
|
+
async def call_tool_example():
|
|
691
|
+
config = {
|
|
692
|
+
"mcpServers": {
|
|
693
|
+
"everything": {
|
|
694
|
+
"command": "npx",
|
|
695
|
+
"args": ["-y", "@modelcontextprotocol/server-everything"],
|
|
696
|
+
}
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
client = MCPClient.from_dict(config)
|
|
701
|
+
|
|
702
|
+
try:
|
|
703
|
+
await client.create_all_sessions()
|
|
704
|
+
session = client.get_session("everything")
|
|
705
|
+
|
|
706
|
+
# Call tool directly
|
|
707
|
+
result = await session.call_tool(
|
|
708
|
+
name="add",
|
|
709
|
+
arguments={"a": 1, "b": 2}
|
|
710
|
+
)
|
|
711
|
+
|
|
712
|
+
print(f"Result: {result.content[0].text}") # Output: 3
|
|
713
|
+
|
|
714
|
+
finally:
|
|
715
|
+
await client.close_all_sessions()
|
|
716
|
+
|
|
717
|
+
if __name__ == "__main__":
|
|
718
|
+
asyncio.run(call_tool_example())
|
|
719
|
+
```
|
|
720
|
+
|
|
721
|
+
See the complete example: [examples/direct_tool_call.py](examples/direct_tool_call.py)
|
|
722
|
+
|
|
698
723
|
# Build a Custom Agent:
|
|
699
724
|
|
|
700
725
|
You can also build your own custom agent using the LangChain adapter:
|
|
@@ -813,23 +838,27 @@ Thanks to all our amazing contributors!
|
|
|
813
838
|
</tr>
|
|
814
839
|
<tr>
|
|
815
840
|
<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>
|
|
816
|
-
<td>⭐
|
|
841
|
+
<td>⭐ 17384</td>
|
|
817
842
|
</tr>
|
|
818
843
|
<tr>
|
|
819
844
|
<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>
|
|
820
|
-
<td>⭐
|
|
845
|
+
<td>⭐ 131</td>
|
|
846
|
+
</tr>
|
|
847
|
+
<tr>
|
|
848
|
+
<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>
|
|
849
|
+
<td>⭐ 100</td>
|
|
821
850
|
</tr>
|
|
822
851
|
<tr>
|
|
823
|
-
<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-
|
|
824
|
-
<td>⭐
|
|
852
|
+
<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>
|
|
853
|
+
<td>⭐ 78</td>
|
|
825
854
|
</tr>
|
|
826
855
|
<tr>
|
|
827
856
|
<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>
|
|
828
|
-
<td>⭐
|
|
857
|
+
<td>⭐ 64</td>
|
|
829
858
|
</tr>
|
|
830
859
|
<tr>
|
|
831
860
|
<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>
|
|
832
|
-
<td>⭐
|
|
861
|
+
<td>⭐ 35</td>
|
|
833
862
|
</tr>
|
|
834
863
|
<tr>
|
|
835
864
|
<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>
|
|
@@ -841,15 +870,11 @@ Thanks to all our amazing contributors!
|
|
|
841
870
|
</tr>
|
|
842
871
|
<tr>
|
|
843
872
|
<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>
|
|
844
|
-
<td>⭐
|
|
873
|
+
<td>⭐ 23</td>
|
|
845
874
|
</tr>
|
|
846
875
|
<tr>
|
|
847
876
|
<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>
|
|
848
|
-
<td>⭐
|
|
849
|
-
</tr>
|
|
850
|
-
<tr>
|
|
851
|
-
<td><img src="https://avatars.githubusercontent.com/u/6688805?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/innovaccer/Healthcare-MCP"><strong>innovaccer/Healthcare-MCP</strong></a></td>
|
|
852
|
-
<td>⭐ 15</td>
|
|
877
|
+
<td>⭐ 19</td>
|
|
853
878
|
</tr>
|
|
854
879
|
</table>
|
|
855
880
|
|
|
@@ -1,25 +1,31 @@
|
|
|
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
|
-
<
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
<div align="center">
|
|
11
|
+
<h2>🎉 <strong>We're LIVE on Product Hunt!</strong> 🎉</h2>
|
|
12
|
+
<p><strong>Support us today and help us reach #1!</strong></p>
|
|
13
|
+
<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: 220px; height: 54px;" width="250" height="54" /></a>
|
|
14
|
+
<p>👆 <em>Click to upvote and leave a comment!</em></p>
|
|
15
|
+
</div>
|
|
13
16
|
|
|
17
|
+
<h1 align="center">🚀 Create MCP Clients and Agents</h1>
|
|
14
18
|
<p align="center">
|
|
15
19
|
<a href="https://github.com/pietrozullo/mcp-use/stargazers" alt="GitHub stars">
|
|
16
20
|
<img src="https://img.shields.io/github/stars/pietrozullo/mcp-use?style=social" /></a>
|
|
21
|
+
<a href="https://pypi.org/project/mcp_use/" alt="PyPI Downloads">
|
|
22
|
+
<img src="https://static.pepy.tech/badge/mcp-use" /></a>
|
|
17
23
|
<a href="https://pypi.org/project/mcp_use/" alt="PyPI Version">
|
|
18
24
|
<img src="https://img.shields.io/pypi/v/mcp_use.svg"/></a>
|
|
25
|
+
<a href="https://github.com/mcp-use/mcp-use-ts" alt="TypeScript">
|
|
26
|
+
<img src="https://img.shields.io/badge/TypeScript-mcp--use-3178C6?logo=typescript&logoColor=white" /></a>
|
|
19
27
|
<a href="https://github.com/pietrozullo/mcp-use/blob/main/LICENSE" alt="License">
|
|
20
28
|
<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
29
|
<a href="https://docs.mcp-use.com" alt="Documentation">
|
|
24
30
|
<img src="https://img.shields.io/badge/docs-mcp--use.com-blue" /></a>
|
|
25
31
|
<a href="https://mcp-use.com" alt="Website">
|
|
@@ -43,10 +49,10 @@
|
|
|
43
49
|
- Visit the [mcp-use docs](https://docs.mcp-use.com/) to get started with mcp-use library
|
|
44
50
|
- For the TypeScript version, visit [mcp-use-ts](https://github.com/mcp-use/mcp-use-ts)
|
|
45
51
|
|
|
46
|
-
| Supports
|
|
47
|
-
|
|
|
52
|
+
| Supports | |
|
|
53
|
+
| :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
48
54
|
| **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) |
|
|
49
|
-
| **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)
|
|
55
|
+
| **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) |
|
|
50
56
|
|
|
51
57
|
## Features
|
|
52
58
|
|
|
@@ -104,7 +110,7 @@ pip install mcp-use
|
|
|
104
110
|
Or install from source:
|
|
105
111
|
|
|
106
112
|
```bash
|
|
107
|
-
git clone https://github.com/
|
|
113
|
+
git clone https://github.com/mcp-use/mcp-use.git
|
|
108
114
|
cd mcp-use
|
|
109
115
|
pip install -e .
|
|
110
116
|
```
|
|
@@ -372,29 +378,7 @@ if __name__ == "__main__":
|
|
|
372
378
|
asyncio.run(run_blender_example())
|
|
373
379
|
```
|
|
374
380
|
|
|
375
|
-
# Configuration
|
|
376
|
-
|
|
377
|
-
MCP-Use supports initialization from configuration files, making it easy to manage and switch between different MCP server setups:
|
|
378
|
-
|
|
379
|
-
```python
|
|
380
|
-
import asyncio
|
|
381
|
-
from mcp_use import create_session_from_config
|
|
382
|
-
|
|
383
|
-
async def main():
|
|
384
|
-
# Create an MCP session from a config file
|
|
385
|
-
session = create_session_from_config("mcp-config.json")
|
|
386
|
-
|
|
387
|
-
# Initialize the session
|
|
388
|
-
await session.initialize()
|
|
389
|
-
|
|
390
|
-
# Use the session...
|
|
391
|
-
|
|
392
|
-
# Disconnect when done
|
|
393
|
-
await session.disconnect()
|
|
394
|
-
|
|
395
|
-
if __name__ == "__main__":
|
|
396
|
-
asyncio.run(main())
|
|
397
|
-
```
|
|
381
|
+
# Configuration Support
|
|
398
382
|
|
|
399
383
|
## HTTP Connection Example
|
|
400
384
|
|
|
@@ -650,6 +634,47 @@ The `SandboxOptions` type provides configuration for the sandbox environment:
|
|
|
650
634
|
- **Consistent environment**: Ensure consistent behavior across different systems
|
|
651
635
|
- **Resource efficiency**: Offload resource-intensive tasks to cloud infrastructure
|
|
652
636
|
|
|
637
|
+
# Direct Tool Calls (Without LLM)
|
|
638
|
+
|
|
639
|
+
You can call MCP server tools directly without an LLM when you need programmatic control:
|
|
640
|
+
|
|
641
|
+
```python
|
|
642
|
+
import asyncio
|
|
643
|
+
from mcp_use import MCPClient
|
|
644
|
+
|
|
645
|
+
async def call_tool_example():
|
|
646
|
+
config = {
|
|
647
|
+
"mcpServers": {
|
|
648
|
+
"everything": {
|
|
649
|
+
"command": "npx",
|
|
650
|
+
"args": ["-y", "@modelcontextprotocol/server-everything"],
|
|
651
|
+
}
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
client = MCPClient.from_dict(config)
|
|
656
|
+
|
|
657
|
+
try:
|
|
658
|
+
await client.create_all_sessions()
|
|
659
|
+
session = client.get_session("everything")
|
|
660
|
+
|
|
661
|
+
# Call tool directly
|
|
662
|
+
result = await session.call_tool(
|
|
663
|
+
name="add",
|
|
664
|
+
arguments={"a": 1, "b": 2}
|
|
665
|
+
)
|
|
666
|
+
|
|
667
|
+
print(f"Result: {result.content[0].text}") # Output: 3
|
|
668
|
+
|
|
669
|
+
finally:
|
|
670
|
+
await client.close_all_sessions()
|
|
671
|
+
|
|
672
|
+
if __name__ == "__main__":
|
|
673
|
+
asyncio.run(call_tool_example())
|
|
674
|
+
```
|
|
675
|
+
|
|
676
|
+
See the complete example: [examples/direct_tool_call.py](examples/direct_tool_call.py)
|
|
677
|
+
|
|
653
678
|
# Build a Custom Agent:
|
|
654
679
|
|
|
655
680
|
You can also build your own custom agent using the LangChain adapter:
|
|
@@ -768,23 +793,27 @@ Thanks to all our amazing contributors!
|
|
|
768
793
|
</tr>
|
|
769
794
|
<tr>
|
|
770
795
|
<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>
|
|
771
|
-
<td>⭐
|
|
796
|
+
<td>⭐ 17384</td>
|
|
772
797
|
</tr>
|
|
773
798
|
<tr>
|
|
774
799
|
<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>
|
|
775
|
-
<td>⭐
|
|
800
|
+
<td>⭐ 131</td>
|
|
801
|
+
</tr>
|
|
802
|
+
<tr>
|
|
803
|
+
<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>
|
|
804
|
+
<td>⭐ 100</td>
|
|
776
805
|
</tr>
|
|
777
806
|
<tr>
|
|
778
|
-
<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-
|
|
779
|
-
<td>⭐
|
|
807
|
+
<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>
|
|
808
|
+
<td>⭐ 78</td>
|
|
780
809
|
</tr>
|
|
781
810
|
<tr>
|
|
782
811
|
<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>
|
|
783
|
-
<td>⭐
|
|
812
|
+
<td>⭐ 64</td>
|
|
784
813
|
</tr>
|
|
785
814
|
<tr>
|
|
786
815
|
<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>
|
|
787
|
-
<td>⭐
|
|
816
|
+
<td>⭐ 35</td>
|
|
788
817
|
</tr>
|
|
789
818
|
<tr>
|
|
790
819
|
<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>
|
|
@@ -796,15 +825,11 @@ Thanks to all our amazing contributors!
|
|
|
796
825
|
</tr>
|
|
797
826
|
<tr>
|
|
798
827
|
<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>
|
|
799
|
-
<td>⭐
|
|
828
|
+
<td>⭐ 23</td>
|
|
800
829
|
</tr>
|
|
801
830
|
<tr>
|
|
802
831
|
<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>
|
|
803
|
-
<td>⭐
|
|
804
|
-
</tr>
|
|
805
|
-
<tr>
|
|
806
|
-
<td><img src="https://avatars.githubusercontent.com/u/6688805?s=40&v=4" width="20" height="20" style="vertical-align: middle; margin-right: 8px;"> <a href="https://github.com/innovaccer/Healthcare-MCP"><strong>innovaccer/Healthcare-MCP</strong></a></td>
|
|
807
|
-
<td>⭐ 15</td>
|
|
832
|
+
<td>⭐ 19</td>
|
|
808
833
|
</tr>
|
|
809
834
|
</table>
|
|
810
835
|
|