Skip to content

Commit 10b1f1d

Browse files
committed
fix tests
1 parent c377c54 commit 10b1f1d

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

.github/workflows/mcp-compatibility.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,9 @@ jobs:
263263
return []
264264
items = []
265265
for piece in cleaned.split(','):
266-
candidate = piece.strip().strip("'\"")
266+
candidate = piece.strip()
267+
candidate = candidate.strip(chr(39))
268+
candidate = candidate.strip(chr(34))
267269
if candidate:
268270
items.append(candidate)
269271
return items

.github/workflows/mcp-prerelease-compatibility.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,9 @@ jobs:
252252
return []
253253
items = []
254254
for piece in cleaned.split(','):
255-
candidate = piece.strip().strip("'\"")
255+
candidate = piece.strip()
256+
candidate = candidate.strip(chr(39))
257+
candidate = candidate.strip(chr(34))
256258
if candidate:
257259
items.append(candidate)
258260
return items

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,11 @@ MCPcat is an analytics platform for MCP server owners 🐱. It captures user int
3535
This SDK also provides a free and simple way to forward telemetry like logs, traces, and errors to any Open Telemetry collector or popular tools like Datadog and Sentry.
3636

3737
```bash
38+
# Basic installation (includes official MCP SDK)
3839
pip install mcpcat
40+
41+
# With Jlowin's/Prefect's FastMCP support
42+
pip install "mcpcat[community]"
3943
```
4044

4145
To learn more about us, check us out [here](https://mcpcat.io)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "mcpcat"
3-
version = "0.1.6"
3+
version = "0.1.7rc1"
44
description = "Analytics Tool for MCP Servers - provides insights into MCP tool usage patterns"
55
authors = [
66
{ name = "MCPCat", email = "support@mcpcat.io" },

0 commit comments

Comments
 (0)