mcp-use 1.3.10__tar.gz → 1.3.11__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.

Files changed (188) hide show
  1. {mcp_use-1.3.10 → mcp_use-1.3.11}/.github/workflows/tests.yml +1 -1
  2. {mcp_use-1.3.10 → mcp_use-1.3.11}/PKG-INFO +19 -24
  3. {mcp_use-1.3.10 → mcp_use-1.3.11}/README.md +16 -22
  4. mcp_use-1.3.11/docs/changelog/1_3_11.mdx +73 -0
  5. {mcp_use-1.3.10/docs → mcp_use-1.3.11/docs/changelog}/changelog.mdx +11 -0
  6. mcp_use-1.3.11/docs/client/authentication.mdx +417 -0
  7. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/docs.json +11 -3
  8. mcp_use-1.3.11/docs/images/Release1.3.11.png +0 -0
  9. mcp_use-1.3.11/examples/simple_oauth_example.py +37 -0
  10. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/adapters/langchain_adapter.py +7 -5
  11. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/agents/mcpagent.py +16 -4
  12. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/agents/prompts/templates.py +1 -10
  13. mcp_use-1.3.11/mcp_use/auth/__init__.py +6 -0
  14. mcp_use-1.3.11/mcp_use/auth/bearer.py +17 -0
  15. mcp_use-1.3.11/mcp_use/auth/oauth.py +625 -0
  16. mcp_use-1.3.11/mcp_use/auth/oauth_callback.py +214 -0
  17. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/client.py +1 -1
  18. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/config.py +2 -2
  19. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/connectors/base.py +17 -12
  20. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/connectors/http.py +117 -21
  21. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/connectors/websocket.py +14 -5
  22. mcp_use-1.3.11/mcp_use/exceptions.py +31 -0
  23. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/task_managers/base.py +13 -23
  24. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/task_managers/sse.py +5 -0
  25. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/task_managers/streamable_http.py +5 -0
  26. {mcp_use-1.3.10 → mcp_use-1.3.11}/pyproject.toml +3 -2
  27. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/conftest.py +30 -0
  28. mcp_use-1.3.11/tests/integration/primitives/test_auth.py +200 -0
  29. mcp_use-1.3.11/tests/integration/servers_for_testing/auth_server.py +140 -0
  30. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/unit/test_config.py +10 -10
  31. mcp_use-1.3.11/tests/unit/test_enum_handling.py +109 -0
  32. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/unit/test_http_connector.py +9 -7
  33. mcp_use-1.3.10/tests/unit/test_logging.py +0 -117
  34. {mcp_use-1.3.10 → mcp_use-1.3.11}/.env.example +0 -0
  35. {mcp_use-1.3.10 → mcp_use-1.3.11}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  36. {mcp_use-1.3.10 → mcp_use-1.3.11}/.github/pull_request_template.md +0 -0
  37. {mcp_use-1.3.10 → mcp_use-1.3.11}/.github/release-drafter.yml +0 -0
  38. {mcp_use-1.3.10 → mcp_use-1.3.11}/.github/workflows/changelog.yml +0 -0
  39. {mcp_use-1.3.10 → mcp_use-1.3.11}/.github/workflows/publish.yml +0 -0
  40. {mcp_use-1.3.10 → mcp_use-1.3.11}/.github/workflows/release-drafter.yml +0 -0
  41. {mcp_use-1.3.10 → mcp_use-1.3.11}/.github/workflows/stale.yml +0 -0
  42. {mcp_use-1.3.10 → mcp_use-1.3.11}/.github/workflows/update-readme.yml +0 -0
  43. {mcp_use-1.3.10 → mcp_use-1.3.11}/.gitignore +0 -0
  44. {mcp_use-1.3.10 → mcp_use-1.3.11}/.pre-commit-config.yaml +0 -0
  45. {mcp_use-1.3.10 → mcp_use-1.3.11}/CHANGELOG.md +0 -0
  46. {mcp_use-1.3.10 → mcp_use-1.3.11}/CLAUDE.md +0 -0
  47. {mcp_use-1.3.10 → mcp_use-1.3.11}/CODE_OF_CONDUCT.md +0 -0
  48. {mcp_use-1.3.10 → mcp_use-1.3.11}/CONTRIBUTING.md +0 -0
  49. {mcp_use-1.3.10 → mcp_use-1.3.11}/LICENSE +0 -0
  50. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/README.md +0 -0
  51. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/advanced/building-custom-agents.mdx +0 -0
  52. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/advanced/logging.mdx +0 -0
  53. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/advanced/multi-server-setup.mdx +0 -0
  54. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/advanced/security.mdx +0 -0
  55. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/agent/agent-configuration.mdx +0 -0
  56. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/agent/interactive-chat-patterns.mdx +0 -0
  57. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/agent/llm-integration.mdx +0 -0
  58. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/agent/server-manager.mdx +0 -0
  59. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/agent/streaming.mdx +0 -0
  60. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/agent/structured-output.mdx +0 -0
  61. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/api-reference/adapters.mdx +0 -0
  62. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/api-reference/introduction.mdx +0 -0
  63. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/api-reference/mcpagent.mdx +0 -0
  64. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/api-reference/mcpclient.mdx +0 -0
  65. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/client/client-configuration.mdx +0 -0
  66. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/client/connection-types.mdx +0 -0
  67. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/client/direct-tool-calls.mdx +0 -0
  68. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/client/elicitation.mdx +0 -0
  69. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/client/logging.mdx +0 -0
  70. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/client/notifications.mdx +0 -0
  71. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/client/prompts.mdx +0 -0
  72. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/client/resources.mdx +0 -0
  73. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/client/sampling.mdx +0 -0
  74. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/client/sandbox.mdx +0 -0
  75. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/client/tools.mdx +0 -0
  76. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/community/showcase.mdx +0 -0
  77. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/development/observability.mdx +0 -0
  78. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/development/telemetry.mdx +0 -0
  79. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/development.mdx +0 -0
  80. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/favicon.svg +0 -0
  81. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/fonts.css +0 -0
  82. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/getting-started/configuration.mdx +0 -0
  83. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/getting-started/index.mdx +0 -0
  84. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/getting-started/installation.mdx +0 -0
  85. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/getting-started/quickstart.mdx +0 -0
  86. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/01.png +0 -0
  87. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/02.png +0 -0
  88. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/configuration-dark.png +0 -0
  89. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/configuration-light.png +0 -0
  90. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/examples-dark.png +0 -0
  91. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/examples-light.png +0 -0
  92. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/hero-dark.png +0 -0
  93. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/hero-light.png +0 -0
  94. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/installation-dark.png +0 -0
  95. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/installation-light.png +0 -0
  96. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/quickstart-dark.png +0 -0
  97. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/images/quickstart-light.png +0 -0
  98. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/logo/dark.svg +0 -0
  99. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/logo/light.svg +0 -0
  100. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/logo/react.svg +0 -0
  101. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/snippets/snippet-intro.mdx +0 -0
  102. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/snippets/youtube-embed.mdx +0 -0
  103. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/troubleshooting/common-issues.mdx +0 -0
  104. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/troubleshooting/connection-errors.mdx +0 -0
  105. {mcp_use-1.3.10 → mcp_use-1.3.11}/docs/troubleshooting/performance.mdx +0 -0
  106. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/airbnb_mcp.json +0 -0
  107. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/airbnb_use.py +0 -0
  108. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/blender_use.py +0 -0
  109. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/browser_use.py +0 -0
  110. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/chat_example.py +0 -0
  111. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/direct_tool_call.py +0 -0
  112. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/filesystem_use.py +0 -0
  113. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/http_example.py +0 -0
  114. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/mcp_everything.py +0 -0
  115. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/multi_server_example.py +0 -0
  116. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/sandbox_everything.py +0 -0
  117. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/simple_server_manager_use.py +0 -0
  118. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/stream_example.py +0 -0
  119. {mcp_use-1.3.10 → mcp_use-1.3.11}/examples/structured_output.py +0 -0
  120. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/__init__.py +0 -0
  121. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/adapters/__init__.py +0 -0
  122. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/adapters/base.py +0 -0
  123. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/agents/__init__.py +0 -0
  124. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/agents/base.py +0 -0
  125. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/agents/prompts/system_prompt_builder.py +0 -0
  126. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/agents/remote.py +0 -0
  127. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/cli.py +0 -0
  128. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/connectors/__init__.py +0 -0
  129. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/connectors/sandbox.py +0 -0
  130. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/connectors/stdio.py +0 -0
  131. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/connectors/utils.py +0 -0
  132. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/errors/__init__.py +0 -0
  133. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/errors/error_formatting.py +0 -0
  134. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/logging.py +0 -0
  135. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/managers/__init__.py +0 -0
  136. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/managers/base.py +0 -0
  137. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/managers/server_manager.py +0 -0
  138. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/managers/tools/__init__.py +0 -0
  139. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/managers/tools/base_tool.py +0 -0
  140. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/managers/tools/connect_server.py +0 -0
  141. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/managers/tools/disconnect_server.py +0 -0
  142. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/managers/tools/get_active_server.py +0 -0
  143. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/managers/tools/list_servers_tool.py +0 -0
  144. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/managers/tools/search_tools.py +0 -0
  145. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/observability/__init__.py +0 -0
  146. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/observability/callbacks_manager.py +0 -0
  147. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/observability/laminar.py +0 -0
  148. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/observability/langfuse.py +0 -0
  149. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/session.py +0 -0
  150. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/task_managers/__init__.py +0 -0
  151. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/task_managers/stdio.py +0 -0
  152. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/task_managers/websocket.py +0 -0
  153. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/telemetry/__init__.py +0 -0
  154. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/telemetry/events.py +0 -0
  155. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/telemetry/telemetry.py +0 -0
  156. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/telemetry/utils.py +0 -0
  157. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/types/sandbox.py +0 -0
  158. {mcp_use-1.3.10 → mcp_use-1.3.11}/mcp_use/utils.py +0 -0
  159. {mcp_use-1.3.10 → mcp_use-1.3.11}/pytest.ini +0 -0
  160. {mcp_use-1.3.10 → mcp_use-1.3.11}/ruff.toml +0 -0
  161. {mcp_use-1.3.10 → mcp_use-1.3.11}/static/logo-gh.jpg +0 -0
  162. {mcp_use-1.3.10 → mcp_use-1.3.11}/static/logo_black.svg +0 -0
  163. {mcp_use-1.3.10 → mcp_use-1.3.11}/static/logo_white.svg +0 -0
  164. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/conftest.py +0 -0
  165. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/__init__.py +0 -0
  166. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/others/test_custom_streaming_integration.py +0 -0
  167. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/primitives/test_discovery.py +0 -0
  168. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/primitives/test_elicitation.py +0 -0
  169. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/primitives/test_logging.py +0 -0
  170. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/primitives/test_notifications.py +0 -0
  171. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/primitives/test_prompts.py +0 -0
  172. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/primitives/test_resources.py +0 -0
  173. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/primitives/test_sampling.py +0 -0
  174. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/primitives/test_tools.py +0 -0
  175. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/servers_for_testing/__init__.py +0 -0
  176. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/servers_for_testing/custom_streaming_server.py +0 -0
  177. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/servers_for_testing/primitive_server.py +0 -0
  178. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/servers_for_testing/simple_server.py +0 -0
  179. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/servers_for_testing/timeout_test_server.py +0 -0
  180. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/transports/test_sse.py +0 -0
  181. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/transports/test_stdio.py +0 -0
  182. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/integration/transports/test_streamable_http.py +0 -0
  183. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/unit/test_client.py +0 -0
  184. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/unit/test_sandbox_connector.py +0 -0
  185. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/unit/test_search_tools_issue_138.py +0 -0
  186. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/unit/test_session.py +0 -0
  187. {mcp_use-1.3.10 → mcp_use-1.3.11}/tests/unit/test_stdio_connector.py +0 -0
  188. {mcp_use-1.3.10 → mcp_use-1.3.11}/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, notifications]
80
+ primitive: [sampling, tools, resources, prompts, elicitation, notifications, auth]
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.10
3
+ Version: 1.3.11
4
4
  Summary: MCP Library for LLMs
5
5
  Author-email: Pietro Zullo <pietro.zullo@gmail.com>
6
6
  License: MIT
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
16
  Requires-Python: >=3.11
17
17
  Requires-Dist: aiohttp>=3.9.0
18
+ Requires-Dist: authlib>=1.6.3
18
19
  Requires-Dist: jsonschema-pydantic>=0.1.0
19
20
  Requires-Dist: langchain>=0.1.0
20
21
  Requires-Dist: mcp>=1.10.0
@@ -22,7 +23,7 @@ Requires-Dist: posthog>=4.8.0
22
23
  Requires-Dist: pydantic>=2.0.0
23
24
  Requires-Dist: python-dotenv>=1.0.0
24
25
  Requires-Dist: scarf-sdk>=0.1.0
25
- Requires-Dist: websockets>=12.0
26
+ Requires-Dist: websockets>=15.0
26
27
  Provides-Extra: anthropic
27
28
  Requires-Dist: langchain-anthropic; extra == 'anthropic'
28
29
  Provides-Extra: dev
@@ -52,12 +53,6 @@ Description-Content-Type: text/markdown
52
53
  </picture>
53
54
  </div>
54
55
 
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&#0045;use" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1002629&theme=neutral&t=1754609432704" alt="mcp&#0045;use - Open&#0032;source&#0032;SDK&#0032;and&#0032;infra&#0032;for&#0032;MCP&#0032;servers&#0032;&#0038;&#0032;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>
61
56
 
62
57
  <h1 align="center">🚀 Create MCP Clients and Agents</h1>
63
58
  <p align="center">
@@ -96,7 +91,7 @@ Description-Content-Type: text/markdown
96
91
 
97
92
  | Supports | |
98
93
  | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
99
- | **Primitives** | [![Tools](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-tools&label=Tools&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Resources](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-resources&label=Resources&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Prompts](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-prompts&label=Prompts&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Sampling](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-sampling&label=Sampling&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Elicitation](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-elicitation&label=Elicitation&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
94
+ | **Primitives** | [![Tools](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-tools&label=Tools&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Resources](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-resources&label=Resources&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Prompts](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-prompts&label=Prompts&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Sampling](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-sampling&label=Sampling&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Elicitation](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-elicitation&label=Elicitation&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Authentication](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-authentication&label=Authentication&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
100
95
  | **Transports** | [![Stdio](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=transport-stdio&label=Stdio&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![SSE](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=transport-sse&label=SSE&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Streamable HTTP](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=transport-streamableHttp&label=Streamable%20HTTP&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
101
96
 
102
97
  ## Features
@@ -254,14 +249,14 @@ For other settings, models, and more, check out the documentation.
254
249
 
255
250
  ## Streaming Agent Output
256
251
 
257
- MCP-Use supports asynchronous streaming of agent output using the `astream` method on `MCPAgent`. This allows you to receive incremental results, tool actions, and intermediate steps as they are generated by the agent, enabling real-time feedback and progress reporting.
252
+ MCP-Use supports asynchronous streaming of agent output using the `stream` method on `MCPAgent`. This allows you to receive incremental results, tool actions, and intermediate steps as they are generated by the agent, enabling real-time feedback and progress reporting.
258
253
 
259
254
  ### How to use
260
255
 
261
- Call `agent.astream(query)` and iterate over the results asynchronously:
256
+ Call `agent.stream(query)` and iterate over the results asynchronously:
262
257
 
263
258
  ```python
264
- async for chunk in agent.astream("Find the best restaurant in San Francisco"):
259
+ async for chunk in agent.stream("Find the best restaurant in San Francisco"):
265
260
  print(chunk["messages"], end="", flush=True)
266
261
  ```
267
262
 
@@ -281,7 +276,7 @@ async def main():
281
276
  client = MCPClient.from_config_file("browser_mcp.json")
282
277
  llm = ChatOpenAI(model="gpt-4o")
283
278
  agent = MCPAgent(llm=llm, client=client, max_steps=30)
284
- async for chunk in agent.astream("Look for job at nvidia for machine learning engineer."):
279
+ async for chunk in agent.stream("Look for job at nvidia for machine learning engineer."):
285
280
  print(chunk["messages"], end="", flush=True)
286
281
 
287
282
  if __name__ == "__main__":
@@ -838,31 +833,31 @@ Thanks to all our amazing contributors!
838
833
  </tr>
839
834
  <tr>
840
835
  <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>
841
- <td>⭐ 17384</td>
842
- </tr>
843
- <tr>
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>
845
- <td>⭐ 131</td>
836
+ <td>⭐ 17917</td>
846
837
  </tr>
847
838
  <tr>
848
839
  <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>
840
+ <td>⭐ 178</td>
850
841
  </tr>
851
842
  <tr>
852
843
  <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>
844
+ <td>⭐ 159</td>
845
+ </tr>
846
+ <tr>
847
+ <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>
848
+ <td>⭐ 136</td>
854
849
  </tr>
855
850
  <tr>
856
851
  <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>
857
- <td>⭐ 64</td>
852
+ <td>⭐ 72</td>
858
853
  </tr>
859
854
  <tr>
860
855
  <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>
861
- <td>⭐ 35</td>
856
+ <td>⭐ 40</td>
862
857
  </tr>
863
858
  <tr>
864
859
  <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>
865
- <td>⭐ 30</td>
860
+ <td>⭐ 29</td>
866
861
  </tr>
867
862
  <tr>
868
863
  <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>
@@ -874,7 +869,7 @@ Thanks to all our amazing contributors!
874
869
  </tr>
875
870
  <tr>
876
871
  <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>
877
- <td>⭐ 19</td>
872
+ <td>⭐ 20</td>
878
873
  </tr>
879
874
  </table>
880
875
 
@@ -7,12 +7,6 @@
7
7
  </picture>
8
8
  </div>
9
9
 
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&#0045;use" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1002629&theme=neutral&t=1754609432704" alt="mcp&#0045;use - Open&#0032;source&#0032;SDK&#0032;and&#0032;infra&#0032;for&#0032;MCP&#0032;servers&#0032;&#0038;&#0032;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>
16
10
 
17
11
  <h1 align="center">🚀 Create MCP Clients and Agents</h1>
18
12
  <p align="center">
@@ -51,7 +45,7 @@
51
45
 
52
46
  | Supports | |
53
47
  | :------------- | :---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
54
- | **Primitives** | [![Tools](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-tools&label=Tools&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Resources](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-resources&label=Resources&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Prompts](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-prompts&label=Prompts&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Sampling](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-sampling&label=Sampling&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Elicitation](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-elicitation&label=Elicitation&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
48
+ | **Primitives** | [![Tools](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-tools&label=Tools&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Resources](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-resources&label=Resources&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Prompts](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-prompts&label=Prompts&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Sampling](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-sampling&label=Sampling&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Elicitation](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-elicitation&label=Elicitation&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Authentication](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=primitive-authentication&label=Authentication&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
55
49
  | **Transports** | [![Stdio](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=transport-stdio&label=Stdio&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![SSE](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=transport-sse&label=SSE&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) [![Streamable HTTP](https://img.shields.io/github/actions/workflow/status/pietrozullo/mcp-use/tests.yml?job=transport-streamableHttp&label=Streamable%20HTTP&style=flat)](https://github.com/pietrozullo/mcp-use/actions/workflows/tests.yml) |
56
50
 
57
51
  ## Features
@@ -209,14 +203,14 @@ For other settings, models, and more, check out the documentation.
209
203
 
210
204
  ## Streaming Agent Output
211
205
 
212
- MCP-Use supports asynchronous streaming of agent output using the `astream` method on `MCPAgent`. This allows you to receive incremental results, tool actions, and intermediate steps as they are generated by the agent, enabling real-time feedback and progress reporting.
206
+ MCP-Use supports asynchronous streaming of agent output using the `stream` method on `MCPAgent`. This allows you to receive incremental results, tool actions, and intermediate steps as they are generated by the agent, enabling real-time feedback and progress reporting.
213
207
 
214
208
  ### How to use
215
209
 
216
- Call `agent.astream(query)` and iterate over the results asynchronously:
210
+ Call `agent.stream(query)` and iterate over the results asynchronously:
217
211
 
218
212
  ```python
219
- async for chunk in agent.astream("Find the best restaurant in San Francisco"):
213
+ async for chunk in agent.stream("Find the best restaurant in San Francisco"):
220
214
  print(chunk["messages"], end="", flush=True)
221
215
  ```
222
216
 
@@ -236,7 +230,7 @@ async def main():
236
230
  client = MCPClient.from_config_file("browser_mcp.json")
237
231
  llm = ChatOpenAI(model="gpt-4o")
238
232
  agent = MCPAgent(llm=llm, client=client, max_steps=30)
239
- async for chunk in agent.astream("Look for job at nvidia for machine learning engineer."):
233
+ async for chunk in agent.stream("Look for job at nvidia for machine learning engineer."):
240
234
  print(chunk["messages"], end="", flush=True)
241
235
 
242
236
  if __name__ == "__main__":
@@ -793,31 +787,31 @@ Thanks to all our amazing contributors!
793
787
  </tr>
794
788
  <tr>
795
789
  <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>
796
- <td>⭐ 17384</td>
797
- </tr>
798
- <tr>
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>
800
- <td>⭐ 131</td>
790
+ <td>⭐ 17917</td>
801
791
  </tr>
802
792
  <tr>
803
793
  <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>
794
+ <td>⭐ 178</td>
805
795
  </tr>
806
796
  <tr>
807
797
  <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>
798
+ <td>⭐ 159</td>
799
+ </tr>
800
+ <tr>
801
+ <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>
802
+ <td>⭐ 136</td>
809
803
  </tr>
810
804
  <tr>
811
805
  <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>
812
- <td>⭐ 64</td>
806
+ <td>⭐ 72</td>
813
807
  </tr>
814
808
  <tr>
815
809
  <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>
816
- <td>⭐ 35</td>
810
+ <td>⭐ 40</td>
817
811
  </tr>
818
812
  <tr>
819
813
  <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>
820
- <td>⭐ 30</td>
814
+ <td>⭐ 29</td>
821
815
  </tr>
822
816
  <tr>
823
817
  <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>
@@ -829,7 +823,7 @@ Thanks to all our amazing contributors!
829
823
  </tr>
830
824
  <tr>
831
825
  <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>
832
- <td>⭐ 19</td>
826
+ <td>⭐ 20</td>
833
827
  </tr>
834
828
  </table>
835
829
 
@@ -0,0 +1,73 @@
1
+ ---
2
+ title: "Version 1.3.11"
3
+ description: "Enhanced error handling, authorization features, and critical bug fixes"
4
+ mode: "center"
5
+ ---
6
+
7
+ ![Release Image 1.3.11](/images/Release1.3.11.png)
8
+ This release brings significant improvements to MCP-Use with enhanced error handling, new authorization capabilities, and several critical bug fixes. The most notable additions include a comprehensive authorization system and improved reliability across HTTP connectors and subprocess management.
9
+
10
+ ## 🚀 New Features
11
+
12
+ ### Authorization System
13
+ **[PR #149](https://github.com/pietrozullo/mcp-use/pull/149) by @pietrozullo**
14
+
15
+ A comprehensive OAuth2 and Bearer token authentication framework has been added to MCP-Use, enabling secure access control for MCP servers and clients. The system includes automatic OAuth discovery, dynamic client registration, and secure token storage. Key features include file-based token storage, automatic token refresh, OAuth metadata discovery, and secure callback handling for the authorization code flow.
16
+
17
+ For detailed usage examples and configuration options, see the [Authentication documentation](/client/authentication).
18
+
19
+ ## 🐛 Bug Fixes & Improvements
20
+
21
+ ### HTTP Connector Error Handling
22
+ **[PR #279](https://github.com/pietrozullo/mcp-use/pull/279) by @renvins**
23
+
24
+ Significantly improved error handling in HTTP connectors with better authentication error detection and graceful fallback between transport methods. The system now properly handles HTTP 401/403/407 errors and provides clearer diagnostic messages when authentication fails.
25
+
26
+ ### Empty Tool Result Handling
27
+ **[PR #273](https://github.com/pietrozullo/mcp-use/pull/273) by @renvins**
28
+
29
+ Fixed a critical issue where empty tool results (`content: []`) were causing validation errors in the LangChain adapter. The system now correctly processes empty results and handles cases where tools legitimately return no content.
30
+
31
+ ### JSON Schema Enum Validation
32
+ **[PR #270](https://github.com/pietrozullo/mcp-use/pull/270) by @Amrithesh-Kakkoth**
33
+
34
+ Resolved a validation issue in `jsonschema_to_pydantic` conversion where enum fields without explicit type declarations were failing validation. The fix automatically adds `"type": "string"` to enum fields, ensuring proper Pydantic model generation.
35
+
36
+ ```python
37
+ # Before: This would fail validation
38
+ {"enum": ["x", "y", "z"]}
39
+
40
+ # After: Automatically fixed to
41
+ {"type": "string", "enum": ["x", "y", "z"]}
42
+ ```
43
+
44
+ ### Documentation Fix
45
+ **[PR #266](https://github.com/pietrozullo/mcp-use/pull/266) by @renvins**
46
+
47
+ Corrected a typo in the README documentation where `astream` was incorrectly referenced instead of `stream`, improving clarity for developers following the streaming examples.
48
+
49
+ ### MCPAgent Execution Tracking
50
+ **[PR #254](https://github.com/pietrozullo/mcp-use/pull/254) by @hetsaraiya**
51
+
52
+ Enhanced the MCPAgent execution flow with comprehensive success/failure tracking and telemetry collection. The system now properly tracks execution status, steps taken, tools used, and execution time for better observability and debugging.
53
+
54
+ ```python
55
+ # New telemetry tracking includes:
56
+ # - Execution success/failure status
57
+ # - Number of steps taken
58
+ # - Tools used during execution
59
+ # - Response time and error details
60
+ # - Agent configuration metadata
61
+ ```
62
+
63
+ ### Subprocess Cleanup
64
+ **[PR #231](https://github.com/pietrozullo/mcp-use/pull/231) by @lorenss-m**
65
+
66
+ Fixed a critical resource leak in subprocess management when running multiple MCP clients concurrently. The fix ensures proper process termination and cleanup, preventing zombie processes and memory leaks in long-running applications.
67
+
68
+ ## 🔧 Maintenance
69
+
70
+ ### Automated Dependency Updates
71
+ **[PRs #261](https://github.com/pietrozullo/mcp-use/pull/261), [#253](https://github.com/pietrozullo/mcp-use/pull/253), [#248](https://github.com/pietrozullo/mcp-use/pull/248) by @github-actions[bot]**
72
+
73
+ Regular automated updates to dependent package information, ensuring the project stays current with its ecosystem and maintains compatibility with the latest versions of dependencies.
@@ -4,6 +4,17 @@ description: "New updates and improvements"
4
4
  mode: "center"
5
5
  ---
6
6
 
7
+ <Update label="2025‑09‑29">
8
+ ## v1.3.11
9
+ - **New**: Complete OAuth2 and Bearer token authentication framework ([#149](https://github.com/pietrozullo/mcp-use/pull/149))
10
+ - Fix: HTTP connector error handling with better diagnostics ([#279](https://github.com/pietrozullo/mcp-use/pull/279))
11
+ - Fix: Accept empty tool results without validation errors ([#273](https://github.com/pietrozullo/mcp-use/pull/273))
12
+ - Fix: JSON schema enum validation in jsonschema_to_pydantic conversion ([#270](https://github.com/pietrozullo/mcp-use/pull/270))
13
+ - Fix: Documentation typo (astream → stream) ([#266](https://github.com/pietrozullo/mcp-use/pull/266))
14
+ - Enhancement: MCPAgent execution tracking with success status ([#254](https://github.com/pietrozullo/mcp-use/pull/254))
15
+ - Fix: Subprocess cleanup for multiple MCP clients to prevent memory leaks ([#231](https://github.com/pietrozullo/mcp-use/pull/231))
16
+ </Update>
17
+
7
18
  <Update label="2025‑06‑19">
8
19
  ## v1.3.3
9
20
  - Set default logging level to info