Skip to content

Commit 5873809

Browse files
fix: Revert MCP Release (#253)
* Revert "feat: MCP Server (#244)" This reverts commit f264ee1. * Bump version: 1.10.3 → 1.10.4 * fix: version * Bump version: 1.11.0 → 1.11.1
1 parent f264ee1 commit 5873809

File tree

17 files changed

+30
-1745
lines changed

17 files changed

+30
-1745
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.11.0
2+
current_version = 1.11.1
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<revision>\d+)

.circleci/config.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ orbs:
8383
executors:
8484
cloudsmith_executor:
8585
docker:
86-
- image: circleci/python:3.10
86+
- image: circleci/python:3.9
8787

8888

8989
workflows:
@@ -115,6 +115,11 @@ workflows:
115115
service_name: pytest
116116
command: pytest --junitxml ./reports/pytest.xml
117117
is_test_suite: true
118+
- python/test:
119+
name: pytest-python3.10
120+
version: "3.10"
121+
pkg-manager: pip
122+
pip-dependency-file: requirements.txt
118123
- python/test:
119124
name: pytest-python3.11
120125
version: "3.11"

.flake8

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[flake8]
22
exclude = .svn,CVS,.bzr,.hg,.git,__pycache,.venv,migrations,settings,tests,.tox,build
3-
max-complexity = 22
3+
max-complexity = 20
44
max-line-length = 100
55
select = C,E,F,W,B,B950
66
ignore = E203,E501,D107,D102,W503

.pylintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ ignored-parents=
284284
max-args=13
285285

286286
# Maximum number of attributes for a class (see R0902).
287-
max-attributes=10
287+
max-attributes=7
288288

289289
# Maximum number of boolean expressions in an if statement (see R0916).
290290
max-bool-expr=5
@@ -299,7 +299,7 @@ max-locals=15
299299
max-parents=7
300300

301301
# Maximum number of public methods for a class (see R0904).
302-
max-public-methods=22
302+
max-public-methods=20
303303

304304
# Maximum number of return / yield for function / method body.
305305
max-returns=6

CHANGELOG.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10-
## [1.11.0] - 2026-01-09
11-
12-
### Added
13-
14-
- Added Model Context Protocol (MCP) server support via `cloudsmith mcp` commands. Only STDIO transport is supported for now.
15-
- Auto-configure supported clients (Claude Desktop, Cursor, VS Code, Gemini CLI) with `cloudsmith mcp configure`
16-
- List available tools with `cloudsmith mcp list_tools` and tool groups with `cloudsmith mcp list_groups`
17-
- Filter tools via `mcp_allowed_tools` and `mcp_allowed_tool_groups` configuration options to control which API operations are exposed
18-
19-
2010
## [1.10.3] - 2026-01-08
2111

2212
### Deprecation Notice

cloudsmith_cli/cli/commands/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
help_,
1313
list_,
1414
login,
15-
mcp,
1615
metrics,
1716
move,
1817
policy,

0 commit comments

Comments
 (0)