build(deps): bump mcp from 1.12.4 to 1.23.0 in the pip group across 1 directory - #16
Merged
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #16 +/- ##
=======================================
Coverage ? 82.15%
=======================================
Files ? 21
Lines ? 1737
Branches ? 0
=======================================
Hits ? 1427
Misses ? 310
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Bumps the pip group with 1 update in the / directory: [mcp](https://github.com/modelcontextprotocol/python-sdk). Updates `mcp` from 1.12.4 to 1.23.0 - [Release notes](https://github.com/modelcontextprotocol/python-sdk/releases) - [Changelog](https://github.com/modelcontextprotocol/python-sdk/blob/main/RELEASE.md) - [Commits](modelcontextprotocol/python-sdk@v1.12.4...v1.23.0) --- updated-dependencies: - dependency-name: mcp dependency-version: 1.23.0 dependency-type: indirect dependency-group: pip ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/pip/pip-691174fb6c
branch
from
February 4, 2026 04:24
ab25746 to
faf9e14
Compare
bearlike
pushed a commit
that referenced
this pull request
Apr 10, 2026
Bumps the pip group with 1 update in the / directory: [mcp](https://github.com/modelcontextprotocol/python-sdk). Updates `mcp` from 1.12.4 to 1.23.0 - [Release notes](https://github.com/modelcontextprotocol/python-sdk/releases) - [Changelog](https://github.com/modelcontextprotocol/python-sdk/blob/main/RELEASE.md) - [Commits](modelcontextprotocol/python-sdk@v1.12.4...v1.23.0) --- updated-dependencies: - dependency-name: mcp dependency-version: 1.23.0 dependency-type: indirect dependency-group: pip ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bearlike
added a commit
that referenced
this pull request
Jun 7, 2026
…ndalone MCP server, retry resilience & schema-driven Settings Integrates a new optional capability library, a new product surface, and feature/fix updates across core, the API, and the console. ### `packages/mewbo_graph` — new optional capability library (#23) - Extracts the reusable graph / embedding / memory + SCG substrate out of `apps/mewbo_api` into an extras-gated library, making the monorepo dependency DAG acyclic (`core ← {tools, graph} ← apps`). - `mewbo_graph.wiki` (graph, memory, retriever, embedder, store, structure provider) and `mewbo_graph.scg` (types, store, providers, parser, router, entity resolution, memory bridge). - `mewbo_graph.plugins.{wiki,scg}` — the wiki/scg plugin suites (tools + AgentDefs) now ship with the substrate they wrap. - Upward imports replaced by four down-only seams: wiki store singleton, `CloneTokenCache`, `MapPhaseSink` DI, and `register_builtin_root` (push-on-import). Every API→graph import is guarded so a base install boots graph-less. ### `apps/mewbo_mcp` — new standalone MCP server (#11) - FastMCP (Streamable HTTP) server at `/mcp` (~12 tools): session create/follow-up/interrupt, tiered `get_session_history`, `list_sessions`, `get_agent_tree`, wiki read/ask, and `list_integrations`. - Shares the API's `KeyStore` via token pass-through; `docker/Dockerfile.mcp` + a `mewbo-mcp` compose service. ### `packages/mewbo_core` (#16, #11, #22, #23) - LLM resilience: `llm_resilience.py` (`RetryStrategy`, 3-way error classification, full-jitter backoff, `RetryBudget`, `CircuitBreaker`, doom-loop halt, `repair_tool_pairing`), driven by `tool_use_loop`; typed `agent.retry` + opt-in `llm.fallback`. - `KeyStore` (file + Mongo) for revocable `mk_` API keys. - `ConfigSchemaView` + `x-group` / `x-order` / `x-advanced` / `x-secret` config annotations. - `register_builtin_root` for down-only library plugin discovery. ### `apps/mewbo_api` (#18, #23, #17, #22, #11, #16) - Agentic Search: typed contracts, dual-backend (JSON + Mongo) run/event-log store, run-lifecycle + SSE endpoints, and the `SearchRunner` seam (default `EchoSearchRunner`). - SCG glue: `MapSourceJob`, `OrchestratedSearchRunner`, routes, and the `ScgConfig` gate (flag-gated on `scg.enabled`). - Wiki: multiplex code–memory–docs graph + on-demand incremental refresh control plane; insight ingestion via SessionTool / REST / MCP. - Config API: `GET /api/config` `{config, secrets}`, `x-secret` PATCH writes, schema endpoint; `/api/keys` CRUD; per-run `fallback_models` threading. ### `apps/mewbo_console` (#22, #18, #16, #12, #11) - Faceted, schema-driven Settings & Configuration UI (`SettingsModel`, `facets.ts`, per-section save/reset, secret + repositories fields, Security & Access facet with API Keys panel). - Agentic Search: SSE-driven reveal via `useRunStream`, shared `api/sse.ts`, run rehydration. - LLM fallback control + retry/fallback/halt timeline events. - Multi-model session navbar (`<ModelSummary>`). ### `apps/mewbo_cli` (#16) - Retry/fallback/halt notices; `--fallback-model(s)` / `--no-fallback` flags. ### Plugins, packaging & docs (#14, #23) - Host-agnostic marketplace catalog resolution (`_resolve_git_url`, `marketplace_dir_name`, `plugins.marketplace_default_host`); per-host git auth in `docker/init.d`. - Workspace wiring for `mewbo-graph` + `mewbo-mcp`, new `mcp` extra, and `mewbo-api[wiki]` → `mewbo-graph[treesitter,retrieval]` forwarding; regenerated `configs/app.schema.json`; CI matrix, docker-compose, and CLAUDE.md / docs updates. Bundled PRs: #11, #12, #14, #16, #17, #18, #22, #23. ### Maintenance (folded into this squash) - Upgraded all uv-managed dependencies to their latest compatible versions and refreshed `uv.lock` (96 packages bumped, incl. langchain 1.3.x, langgraph 1.2.x, litellm 1.88.0, openai 2.41.0, pydantic 2.13.x, starlette/uvicorn, mkdocstrings); deliberate `==` dev-tool pins (ruff/mypy/pytest/…) left intact. ruff, mypy, the full pytest suite, and a `--strict` docs build all pass against the refreshed lock. - Bumped the docs brand theme `mkdocs-shadcn-mewbo` 1.0.0 → 1.2.1 (the moving `latest-master` wheel filename tracks the version, so the prior pinned URL had begun returning 404 — the docs build was broken until this refresh). - Docs: adopted the theme's built-in `theme.carousel` for the hero product tour — dropped the local `docs/assets/carousel.{css,js}` and the Swiper CDN `extra_css` / `extra_javascript` plumbing (the theme now emits Swiper + its SRI-pinned init script and styles `.ms-shots`; the landing page keeps only the `.swiper.ms-shots` markup), and removed the redundant `theme.pygments_style` block (it equals the theme default). Closes #33. Also converted the back-to-back image pairs atop the Home Assistant and Web Console + API pages to the same `.swiper.ms-shots` carousel, and demoted the landing-page hero heading from `#` (H1) to `###` so it no longer renders at oversized page-title scale. Co-authored-by: mewbo-ai[bot] <268600793+mewbo-ai[bot]@users.noreply.github.com>
bearlike
added a commit
that referenced
this pull request
Jun 20, 2026
…ndalone MCP server, retry resilience & schema-driven Settings Integrates a new optional capability library, a new product surface, and feature/fix updates across core, the API, and the console. ### `packages/mewbo_graph` — new optional capability library (#23) - Extracts the reusable graph / embedding / memory + SCG substrate out of `apps/mewbo_api` into an extras-gated library, making the monorepo dependency DAG acyclic (`core ← {tools, graph} ← apps`). - `mewbo_graph.wiki` (graph, memory, retriever, embedder, store, structure provider) and `mewbo_graph.scg` (types, store, providers, parser, router, entity resolution, memory bridge). - `mewbo_graph.plugins.{wiki,scg}` — the wiki/scg plugin suites (tools + AgentDefs) now ship with the substrate they wrap. - Upward imports replaced by four down-only seams: wiki store singleton, `CloneTokenCache`, `MapPhaseSink` DI, and `register_builtin_root` (push-on-import). Every API→graph import is guarded so a base install boots graph-less. ### `apps/mewbo_mcp` — new standalone MCP server (#11) - FastMCP (Streamable HTTP) server at `/mcp` (~12 tools): session create/follow-up/interrupt, tiered `get_session_history`, `list_sessions`, `get_agent_tree`, wiki read/ask, and `list_integrations`. - Shares the API's `KeyStore` via token pass-through; `docker/Dockerfile.mcp` + a `mewbo-mcp` compose service. ### `packages/mewbo_core` (#16, #11, #22, #23) - LLM resilience: `llm_resilience.py` (`RetryStrategy`, 3-way error classification, full-jitter backoff, `RetryBudget`, `CircuitBreaker`, doom-loop halt, `repair_tool_pairing`), driven by `tool_use_loop`; typed `agent.retry` + opt-in `llm.fallback`. - `KeyStore` (file + Mongo) for revocable `mk_` API keys. - `ConfigSchemaView` + `x-group` / `x-order` / `x-advanced` / `x-secret` config annotations. - `register_builtin_root` for down-only library plugin discovery. ### `apps/mewbo_api` (#18, #23, #17, #22, #11, #16) - Agentic Search: typed contracts, dual-backend (JSON + Mongo) run/event-log store, run-lifecycle + SSE endpoints, and the `SearchRunner` seam (default `EchoSearchRunner`). - SCG glue: `MapSourceJob`, `OrchestratedSearchRunner`, routes, and the `ScgConfig` gate (flag-gated on `scg.enabled`). - Wiki: multiplex code–memory–docs graph + on-demand incremental refresh control plane; insight ingestion via SessionTool / REST / MCP. - Config API: `GET /api/config` `{config, secrets}`, `x-secret` PATCH writes, schema endpoint; `/api/keys` CRUD; per-run `fallback_models` threading. ### `apps/mewbo_console` (#22, #18, #16, #12, #11) - Faceted, schema-driven Settings & Configuration UI (`SettingsModel`, `facets.ts`, per-section save/reset, secret + repositories fields, Security & Access facet with API Keys panel). - Agentic Search: SSE-driven reveal via `useRunStream`, shared `api/sse.ts`, run rehydration. - LLM fallback control + retry/fallback/halt timeline events. - Multi-model session navbar (`<ModelSummary>`). ### `apps/mewbo_cli` (#16) - Retry/fallback/halt notices; `--fallback-model(s)` / `--no-fallback` flags. ### Plugins, packaging & docs (#14, #23) - Host-agnostic marketplace catalog resolution (`_resolve_git_url`, `marketplace_dir_name`, `plugins.marketplace_default_host`); per-host git auth in `docker/init.d`. - Workspace wiring for `mewbo-graph` + `mewbo-mcp`, new `mcp` extra, and `mewbo-api[wiki]` → `mewbo-graph[treesitter,retrieval]` forwarding; regenerated `configs/app.schema.json`; CI matrix, docker-compose, and CLAUDE.md / docs updates. Bundled PRs: #11, #12, #14, #16, #17, #18, #22, #23. ### Maintenance (folded into this squash) - Upgraded all uv-managed dependencies to their latest compatible versions and refreshed `uv.lock` (96 packages bumped, incl. langchain 1.3.x, langgraph 1.2.x, litellm 1.88.0, openai 2.41.0, pydantic 2.13.x, starlette/uvicorn, mkdocstrings); deliberate `==` dev-tool pins (ruff/mypy/pytest/…) left intact. ruff, mypy, the full pytest suite, and a `--strict` docs build all pass against the refreshed lock. - Bumped the docs brand theme `mkdocs-shadcn-mewbo` 1.0.0 → 1.2.1 (the moving `latest-master` wheel filename tracks the version, so the prior pinned URL had begun returning 404 — the docs build was broken until this refresh). - Docs: adopted the theme's built-in `theme.carousel` for the hero product tour — dropped the local `docs/assets/carousel.{css,js}` and the Swiper CDN `extra_css` / `extra_javascript` plumbing (the theme now emits Swiper + its SRI-pinned init script and styles `.ms-shots`; the landing page keeps only the `.swiper.ms-shots` markup), and removed the redundant `theme.pygments_style` block (it equals the theme default). Closes #33. Also converted the back-to-back image pairs atop the Home Assistant and Web Console + API pages to the same `.swiper.ms-shots` carousel, and demoted the landing-page hero heading from `#` (H1) to `###` so it no longer renders at oversized page-title scale. Co-authored-by: mewbo-ai[bot] <268600793+mewbo-ai[bot]@users.noreply.github.com>
bearlike
added a commit
that referenced
this pull request
Jun 20, 2026
…ndalone MCP server, retry resilience & schema-driven Settings Integrates a new optional capability library, a new product surface, and feature/fix updates across core, the API, and the console. ### `packages/mewbo_graph` — new optional capability library (#23) - Extracts the reusable graph / embedding / memory + SCG substrate out of `apps/mewbo_api` into an extras-gated library, making the monorepo dependency DAG acyclic (`core ← {tools, graph} ← apps`). - `mewbo_graph.wiki` (graph, memory, retriever, embedder, store, structure provider) and `mewbo_graph.scg` (types, store, providers, parser, router, entity resolution, memory bridge). - `mewbo_graph.plugins.{wiki,scg}` — the wiki/scg plugin suites (tools + AgentDefs) now ship with the substrate they wrap. - Upward imports replaced by four down-only seams: wiki store singleton, `CloneTokenCache`, `MapPhaseSink` DI, and `register_builtin_root` (push-on-import). Every API→graph import is guarded so a base install boots graph-less. ### `apps/mewbo_mcp` — new standalone MCP server (#11) - FastMCP (Streamable HTTP) server at `/mcp` (~12 tools): session create/follow-up/interrupt, tiered `get_session_history`, `list_sessions`, `get_agent_tree`, wiki read/ask, and `list_integrations`. - Shares the API's `KeyStore` via token pass-through; `docker/Dockerfile.mcp` + a `mewbo-mcp` compose service. ### `packages/mewbo_core` (#16, #11, #22, #23) - LLM resilience: `llm_resilience.py` (`RetryStrategy`, 3-way error classification, full-jitter backoff, `RetryBudget`, `CircuitBreaker`, doom-loop halt, `repair_tool_pairing`), driven by `tool_use_loop`; typed `agent.retry` + opt-in `llm.fallback`. - `KeyStore` (file + Mongo) for revocable `mk_` API keys. - `ConfigSchemaView` + `x-group` / `x-order` / `x-advanced` / `x-secret` config annotations. - `register_builtin_root` for down-only library plugin discovery. ### `apps/mewbo_api` (#18, #23, #17, #22, #11, #16) - Agentic Search: typed contracts, dual-backend (JSON + Mongo) run/event-log store, run-lifecycle + SSE endpoints, and the `SearchRunner` seam (default `EchoSearchRunner`). - SCG glue: `MapSourceJob`, `OrchestratedSearchRunner`, routes, and the `ScgConfig` gate (flag-gated on `scg.enabled`). - Wiki: multiplex code–memory–docs graph + on-demand incremental refresh control plane; insight ingestion via SessionTool / REST / MCP. - Config API: `GET /api/config` `{config, secrets}`, `x-secret` PATCH writes, schema endpoint; `/api/keys` CRUD; per-run `fallback_models` threading. ### `apps/mewbo_console` (#22, #18, #16, #12, #11) - Faceted, schema-driven Settings & Configuration UI (`SettingsModel`, `facets.ts`, per-section save/reset, secret + repositories fields, Security & Access facet with API Keys panel). - Agentic Search: SSE-driven reveal via `useRunStream`, shared `api/sse.ts`, run rehydration. - LLM fallback control + retry/fallback/halt timeline events. - Multi-model session navbar (`<ModelSummary>`). ### `apps/mewbo_cli` (#16) - Retry/fallback/halt notices; `--fallback-model(s)` / `--no-fallback` flags. ### Plugins, packaging & docs (#14, #23) - Host-agnostic marketplace catalog resolution (`_resolve_git_url`, `marketplace_dir_name`, `plugins.marketplace_default_host`); per-host git auth in `docker/init.d`. - Workspace wiring for `mewbo-graph` + `mewbo-mcp`, new `mcp` extra, and `mewbo-api[wiki]` → `mewbo-graph[treesitter,retrieval]` forwarding; regenerated `configs/app.schema.json`; CI matrix, docker-compose, and CLAUDE.md / docs updates. Bundled PRs: #11, #12, #14, #16, #17, #18, #22, #23. ### Maintenance (folded into this squash) - Upgraded all uv-managed dependencies to their latest compatible versions and refreshed `uv.lock` (96 packages bumped, incl. langchain 1.3.x, langgraph 1.2.x, litellm 1.88.0, openai 2.41.0, pydantic 2.13.x, starlette/uvicorn, mkdocstrings); deliberate `==` dev-tool pins (ruff/mypy/pytest/…) left intact. ruff, mypy, the full pytest suite, and a `--strict` docs build all pass against the refreshed lock. - Bumped the docs brand theme `mkdocs-shadcn-mewbo` 1.0.0 → 1.2.1 (the moving `latest-master` wheel filename tracks the version, so the prior pinned URL had begun returning 404 — the docs build was broken until this refresh). - Docs: adopted the theme's built-in `theme.carousel` for the hero product tour — dropped the local `docs/assets/carousel.{css,js}` and the Swiper CDN `extra_css` / `extra_javascript` plumbing (the theme now emits Swiper + its SRI-pinned init script and styles `.ms-shots`; the landing page keeps only the `.swiper.ms-shots` markup), and removed the redundant `theme.pygments_style` block (it equals the theme default). Closes #33. Also converted the back-to-back image pairs atop the Home Assistant and Web Console + API pages to the same `.swiper.ms-shots` carousel, and demoted the landing-page hero heading from `#` (H1) to `###` so it no longer renders at oversized page-title scale. Co-authored-by: mewbo-ai[bot] <268600793+mewbo-ai[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps the pip group with 1 update in the / directory: mcp.
Updates
mcpfrom 1.12.4 to 1.23.0Release notes
Sourced from mcp's releases.
... (truncated)
Commits
d3a1841Merge commit from forkfa851d9feat: backwards-compatible create_message overloads for SEP-1577 (#1713)f82b0c9Support client_credentials flow with JWT and Basic auth (#1663)281fd47Add SSE polling support (SEP-1699) (#1654)2cd178aAdd on_session_created callback option (#1710)c92bb2fSEP-1686: Tasks (#1645)5983a65Skip empty SSE data to avoid parsing errors (#1670)02b7889Implement SEP-1036: URL mode elicitation for secure out-of-band interactions ...27279bcUpdate doc string on custom_route (#1660)f225013feat: implement SEP-991 URL-based client ID (CIMD) support (#1652)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditionsYou can disable automated security fix PRs for this repo from the Security Alerts page.