Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.10.0"
".": "1.10.1"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 118
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-dd0f43e15cb67179deaf86f83ae04c6fae4ff858ee33e82a3b89231566cdc5bb.yml
openapi_spec_hash: 569176c1c4f48efd25a44fa526fad9d1
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/runloop-ai%2Frunloop-fa81aa937935299daa80a12956d3f4d69344342291689a77f41f14db5efd928e.yml
openapi_spec_hash: e388727b0c2f4debe675845ab26feacd
config_hash: cbda3692cb48ab8582a0df1674b9e5c8
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.10.1 (2026-02-26)

Full Changelog: [v1.10.0...v1.10.1](https://github.com/runloopai/api-client-python/compare/v1.10.0...v1.10.1)

### Bug Fixes

* **devbox:** add mcp configs to DevboxView ([#7680](https://github.com/runloopai/api-client-python/issues/7680)) ([ad62b28](https://github.com/runloopai/api-client-python/commit/ad62b28582cc03385c5f0bd964dee04aefadfea9))

## 1.10.0 (2026-02-26)

Full Changelog: [v1.9.0...v1.10.0](https://github.com/runloopai/api-client-python/compare/v1.9.0...v1.10.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "runloop_api_client"
version = "1.10.0"
version = "1.10.1"
description = "The official Python library for the runloop API"
dynamic = ["readme"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/runloop_api_client/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "runloop_api_client"
__version__ = "1.10.0" # x-release-please-version
__version__ = "1.10.1" # x-release-please-version
17 changes: 16 additions & 1 deletion src/runloop_api_client/types/devbox_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .tunnel_view import TunnelView
from .shared.launch_parameters import LaunchParameters

__all__ = ["DevboxView", "StateTransition", "GatewaySpecs"]
__all__ = ["DevboxView", "StateTransition", "GatewaySpecs", "McpSpec"]


class StateTransition(BaseModel):
Expand Down Expand Up @@ -39,6 +39,14 @@ class GatewaySpecs(BaseModel):
"""The ID of the secret containing the credential."""


class McpSpec(BaseModel):
mcp_config_id: str
"""The ID of the MCP config (e.g., mcp_123abc)."""

secret_id: str
"""The ID of the secret containing the credential."""


class DevboxView(BaseModel):
"""A Devbox represents a virtual development environment.

Expand Down Expand Up @@ -99,6 +107,13 @@ class DevboxView(BaseModel):
initiator_type: Optional[Literal["unknown", "api", "scenario", "scoring_validation"]] = None
"""The type of initiator that created the Devbox."""

mcp_specs: Optional[List[McpSpec]] = None
"""[Beta] MCP specifications configured for this devbox.

Each spec links an MCP config to a secret for MCP server access through the MCP
hub.
"""

name: Optional[str] = None
"""The name of the Devbox."""

Expand Down