Skip to content

Commit 9d96359

Browse files
committed
docs: add existing platform support section
1 parent 185122d commit 9d96359

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Use MCPcat for:
4646

4747
- **User session replay** 🎬. Follow alongside your users to understand why they're using your MCP servers, what functionality you're missing, and what clients they're coming from.
4848
- **Trace debugging** 🔍. See where your users are getting stuck, track and find when LLMs get confused by your API, and debug sessions across all deployments of your MCP server.
49+
- **Existing platform support** 📊. Get logging and tracing out of the box for your existing observability platforms (OpenTelemetry, Datadog, Sentry) — eliminating the tedious work of implementing telemetry yourself.
4950

5051
## Getting Started
5152

@@ -93,6 +94,35 @@ mcpcat.track(mcpServer, "proj_0000000", {
9394
});
9495
```
9596

97+
### Existing Platform Support
98+
99+
MCPcat seamlessly integrates with your existing observability stack, providing automatic logging and tracing without the tedious setup typically required. Export telemetry data to multiple platforms simultaneously:
100+
101+
```typescript
102+
mcpcat.track(server, "proj_0000", {
103+
// Project ID can be as well "null" since MCPcat is optional when sending data to existing observability platforms
104+
exporters: {
105+
otlp: {
106+
type: "otlp",
107+
endpoint: "http://localhost:4318/v1/traces",
108+
},
109+
datadog: {
110+
type: "datadog",
111+
apiKey: process.env.DD_API_KEY,
112+
site: "datadoghq.com",
113+
service: "my-mcp-server",
114+
},
115+
sentry: {
116+
type: "sentry",
117+
dsn: process.env.SENTRY_DSN,
118+
environment: "production",
119+
},
120+
},
121+
});
122+
```
123+
124+
Learn more about our free and open source [telemetry integrations](https://docs.mcpcat.io/telemetry/integrations).
125+
96126
## Free for open source
97127

98128
MCPcat is free for qualified open source projects. We believe in supporting the ecosystem that makes MCP possible. If you maintain an open source MCP server, you can access our full analytics platform at no cost.

0 commit comments

Comments
 (0)