Skip to content
Open
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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## [0.14.0](https://github.com/CrowdStrike/falcon-mcp/compare/v0.13.0...v0.14.0) (2026-07-15)


### Features

* **cloud:** add falcon_search_cloud_risks, falcon_search_cloud_groups, and falcon_get_cloud_groups tools ([#467](https://github.com/CrowdStrike/falcon-mcp/issues/467)) ([79f4a18](https://github.com/CrowdStrike/falcon-mcp/commit/79f4a18cba3e4b8208be0c903c09f0083ef6a30b))


### Bug Fixes

* **deps:** add cryptography floor constraint for CVE-2026-34180 ([3e43ecb](https://github.com/CrowdStrike/falcon-mcp/commit/3e43ecb9890a501830564f0a88193452f491a4d3))
* **deps:** bump cryptography minimum version ([#458](https://github.com/CrowdStrike/falcon-mcp/issues/458)) ([3e43ecb](https://github.com/CrowdStrike/falcon-mcp/commit/3e43ecb9890a501830564f0a88193452f491a4d3))
* **modules/spotlight:** allow facet to accept a list of values ([#460](https://github.com/CrowdStrike/falcon-mcp/issues/460)) ([31cd989](https://github.com/CrowdStrike/falcon-mcp/commit/31cd989877a9f1bc69927c127c627b73f2ab7895))
* **modules:** restore sort order in two-step search tools ([#463](https://github.com/CrowdStrike/falcon-mcp/issues/463)) ([eff6a6c](https://github.com/CrowdStrike/falcon-mcp/commit/eff6a6c2b9be45d5b9ec67e1cb4cbe8160588819))

## [0.13.0](https://github.com/CrowdStrike/falcon-mcp/compare/v0.12.0...v0.13.0) (2026-06-25)


Expand Down
15 changes: 15 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@

# Changelog

## [0.14.0](https://github.com/CrowdStrike/falcon-mcp/compare/v0.13.0...v0.14.0) (2026-07-15)


### Features

* **cloud:** add falcon_search_cloud_risks, falcon_search_cloud_groups, and falcon_get_cloud_groups tools ([#467](https://github.com/CrowdStrike/falcon-mcp/issues/467)) ([79f4a18](https://github.com/CrowdStrike/falcon-mcp/commit/79f4a18cba3e4b8208be0c903c09f0083ef6a30b))


### Bug Fixes

* **deps:** add cryptography floor constraint for CVE-2026-34180 ([3e43ecb](https://github.com/CrowdStrike/falcon-mcp/commit/3e43ecb9890a501830564f0a88193452f491a4d3))
* **deps:** bump cryptography minimum version ([#458](https://github.com/CrowdStrike/falcon-mcp/issues/458)) ([3e43ecb](https://github.com/CrowdStrike/falcon-mcp/commit/3e43ecb9890a501830564f0a88193452f491a4d3))
* **modules/spotlight:** allow facet to accept a list of values ([#460](https://github.com/CrowdStrike/falcon-mcp/issues/460)) ([31cd989](https://github.com/CrowdStrike/falcon-mcp/commit/31cd989877a9f1bc69927c127c627b73f2ab7895))
* **modules:** restore sort order in two-step search tools ([#463](https://github.com/CrowdStrike/falcon-mcp/issues/463)) ([eff6a6c](https://github.com/CrowdStrike/falcon-mcp/commit/eff6a6c2b9be45d5b9ec67e1cb4cbe8160588819))

## [0.13.0](https://github.com/CrowdStrike/falcon-mcp/compare/v0.12.0...v0.13.0) (2026-06-25)


Expand Down
2 changes: 1 addition & 1 deletion gemini-extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "falcon-mcp",
"version": "0.13.0",
"version": "0.14.0",
"mcpServers": {
"falcon-mcp": {
"command": "uvx",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "falcon-mcp"
version = "0.13.0"
version = "0.14.0"
description = "CrowdStrike Falcon MCP Server"
readme = "README.md"
requires-python = ">=3.11"
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"source": "github",
"id": "999737146"
},
"version": "0.13.0",
"version": "0.14.0",
"packages": [
{
"registryType": "pypi",
"identifier": "falcon-mcp",
"version": "0.13.0",
"version": "0.14.0",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
Expand Down
Loading