Skip to content

Commit 50f640f

Browse files
committed
fix: Refactoring TFO-MCP to TFO-Python-MCP
1 parent 0982532 commit 50f640f

31 files changed

+570
-589
lines changed

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ TELEMETRYFLOW_API_KEY=your-telemetryflow-api-key-here
3131
TELEMETRYFLOW_ENDPOINT=localhost:4317
3232

3333
# Service identification
34-
TELEMETRYFLOW_SERVICE_NAME=telemetryflow-mcp
34+
TELEMETRYFLOW_SERVICE_NAME=telemetryflow-python-mcp
3535
TELEMETRYFLOW_SERVICE_VERSION=1.1.2
3636
TELEMETRYFLOW_SERVICE_NAMESPACE=telemetryflow
3737

@@ -128,7 +128,7 @@ TELEMETRYFLOW_MCP_TELEMETRY_BACKEND=telemetryflow
128128
TELEMETRYFLOW_MCP_OTLP_ENDPOINT=localhost:4317
129129

130130
# Service name (standard OTEL env var, used alongside TelemetryFlow SDK)
131-
TELEMETRYFLOW_MCP_SERVICE_NAME=telemetryflow-mcp
131+
TELEMETRYFLOW_MCP_SERVICE_NAME=telemetryflow-python-mcp
132132

133133

134134
# =============================================================================

.kiro/steering/claude-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TFO-MCP Claude Integration Standards
1+
# TFO-Python-MCP Claude Integration Standards
22

33
## Overview
44

.kiro/steering/mcp-protocol.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TFO-MCP Protocol Standards
1+
# TFO-Python-MCP Protocol Standards
22

33
## Overview
44

.kiro/steering/observability.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TFO-MCP Observability Standards
1+
# TFO-Python-MCP Observability Standards
22

33
## Overview
44

@@ -56,7 +56,7 @@ class TelemetryConfig(BaseSettings):
5656
description="Enable telemetry collection",
5757
)
5858
service_name: str = Field(
59-
default="telemetryflow-mcp",
59+
default="telemetryflow-python-mcp",
6060
description="Service name for telemetry",
6161
)
6262
service_version: str = Field(
@@ -128,7 +128,7 @@ from contextlib import asynccontextmanager
128128
from typing import Any
129129

130130

131-
tracer = trace.get_tracer("telemetryflow-mcp")
131+
tracer = trace.get_tracer("telemetryflow-python-mcp")
132132

133133

134134
@asynccontextmanager
@@ -139,7 +139,7 @@ async def mcp_span(
139139
"""Create an MCP operation span."""
140140
attrs = {
141141
"mcp.protocol.version": "2024-11-05",
142-
"service.name": "telemetryflow-mcp",
142+
"service.name": "telemetryflow-python-mcp",
143143
}
144144
if attributes:
145145
attrs.update(attributes)
@@ -805,7 +805,7 @@ class SamplingStrategy:
805805
| Variable | Description | Default |
806806
|----------|-------------|---------|
807807
| TELEMETRYFLOW_MCP_TELEMETRY_ENABLED | Enable telemetry | true |
808-
| TELEMETRYFLOW_MCP_TELEMETRY_SERVICE_NAME | Service name | telemetryflow-mcp |
808+
| TELEMETRYFLOW_MCP_TELEMETRY_SERVICE_NAME | Service name | telemetryflow-python-mcp |
809809
| TELEMETRYFLOW_MCP_OTLP_ENDPOINT | OTLP endpoint | http://localhost:4317 |
810810
| TELEMETRYFLOW_MCP_LOG_LEVEL | Log level | INFO |
811811
| TELEMETRYFLOW_MCP_LOG_FORMAT | Log format | json |

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ What actually happens.
179179

180180
## Environment
181181

182-
- TFO-MCP Version:
182+
- TFO-Python-MCP Version:
183183
- OS:
184184
- Python Version:
185185

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ coverage-report: ## Generate merged coverage report
312312
# DOCKER
313313
# ==============================================================================
314314

315-
DOCKER_IMAGE := telemetryflow-mcp-python
315+
DOCKER_IMAGE := telemetryflow-python-mcp-python
316316
DOCKER_TAG := $(VERSION)
317317

318318
.PHONY: docker-build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ telemetry:
354354
api_key_id: "" # or TELEMETRYFLOW_API_KEY_ID env var
355355
api_key_secret: "" # or TELEMETRYFLOW_API_KEY_SECRET env var
356356
endpoint: "api.telemetryflow.id:4317"
357-
service_name: "telemetryflow-mcp"
357+
service_name: "telemetryflow-python-mcp"
358358
environment: "production"
359359
```
360360

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ flowchart TB
152152
export ANTHROPIC_API_KEY="your-api-key"
153153

154154
# DO: Use secret managers in production
155-
ANTHROPIC_API_KEY=$(aws secretsmanager get-secret-value --secret-id telemetryflow-mcp/api-key)
155+
ANTHROPIC_API_KEY=$(aws secretsmanager get-secret-value --secret-id telemetryflow-python-mcp/api-key)
156156

157157
# DON'T: Put keys in config files
158158
# DON'T: Commit keys to version control
@@ -271,7 +271,7 @@ safety check
271271
bandit -r src/
272272

273273
# Docker image scanning
274-
trivy image telemetryflow-mcp:latest
274+
trivy image telemetryflow-python-mcp:latest
275275
```
276276

277277
### Dependency Update Policy

configs/tfo-mcp.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ telemetry_mcp:
8585
enabled: true
8686
backend: "telemetryflow" # telemetryflow, otel
8787
otlp_endpoint: "localhost:4317"
88-
service_name: "telemetryflow-mcp"
88+
service_name: "telemetryflow-python-mcp"
8989

9090
# =============================================================================
9191
# TelemetryFlow SDK Configuration
9292
# =============================================================================
9393
telemetry:
9494
enabled: false
95-
service_name: "telemetryflow-mcp"
95+
service_name: "telemetryflow-python-mcp"
9696
service_version: "1.1.2"
9797
service_namespace: "telemetryflow"
9898
environment: "development"

0 commit comments

Comments
 (0)