Skip to content

Commit 8795a7f

Browse files
committed
fix: Refactoring TFO-MCP to TFO-GO-MCP
1 parent d8b3df8 commit 8795a7f

82 files changed

Lines changed: 268 additions & 268 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.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-go-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-go-mcp
132132

133133

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

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,4 +882,4 @@ jobs:
882882
883883
---
884884
885-
📚 [Documentation](https://docs.telemetryflow.id) | 🐛 [Report Issues](https://github.com/telemetryflow/telemetryflow-mcp/issues)
885+
📚 [Documentation](https://docs.telemetryflow.id) | 🐛 [Report Issues](https://github.com/telemetryflow/telemetryflow-go-mcp/issues)

.kiro/specs/mcp-server-core.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ DATABASE_MAX_CONNECTIONS: "10"
637637
DATABASE_TIMEOUT: "5s"
638638

639639
# Observability Configuration
640-
TELEMETRYFLOW_MCP_SERVICE_NAME: "telemetryflow-mcp"
640+
TELEMETRYFLOW_MCP_SERVICE_NAME: "telemetryflow-go-mcp"
641641
TELEMETRYFLOW_MCP_OTEL_SERVICE_VERSION: "1.0.0"
642642
TELEMETRYFLOW_MCP_OTLP_ENDPOINT: "http://localhost:4317"
643643
LOG_LEVEL: "info"
@@ -711,16 +711,16 @@ CMD ["./tfo-mcp", "server", "--config", "configs/production.yaml"]
711711
apiVersion: apps/v1
712712
kind: Deployment
713713
metadata:
714-
name: telemetryflow-mcp
714+
name: telemetryflow-go-mcp
715715
spec:
716716
replicas: 3
717717
selector:
718718
matchLabels:
719-
app: telemetryflow-mcp
719+
app: telemetryflow-go-mcp
720720
template:
721721
metadata:
722722
labels:
723-
app: telemetryflow-mcp
723+
app: telemetryflow-go-mcp
724724
spec:
725725
containers:
726726
- name: mcp-server

.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-GO-MCP Claude Integration Standards
22

33
## Claude API Integration
44

.kiro/steering/development-patterns.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# TFO-MCP Development Patterns
1+
# TFO-GO-MCP Development Patterns
22

33
## LEGO Builder Methodology
44

5-
The TFO-MCP follows the LEGO Builder methodology for modular, composable architecture.
5+
The TFO-GO-MCP follows the LEGO Builder methodology for modular, composable architecture.
66

77
### Module Structure
88

.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-GO-MCP Protocol Standards
22

33
## MCP Protocol Implementation
44

.kiro/steering/observability.md

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

33
## OpenTelemetry Integration
44

@@ -54,12 +54,12 @@ const (
5454

5555
// Span creation patterns
5656
func StartMCPSpan(ctx context.Context, operationName string, attrs ...attribute.KeyValue) (context.Context, trace.Span) {
57-
tracer := otel.Tracer("telemetryflow-mcp")
57+
tracer := otel.Tracer("telemetryflow-go-mcp")
5858

5959
// Add standard MCP attributes
6060
standardAttrs := []attribute.KeyValue{
6161
attribute.String("mcp.protocol.version", MCPProtocolVersion),
62-
attribute.String("service.name", "telemetryflow-mcp"),
62+
attribute.String("service.name", "telemetryflow-go-mcp"),
6363
}
6464

6565
allAttrs := append(standardAttrs, attrs...)

.kiro/steering/tech.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# TFO-MCP Technology Stack
1+
# TFO-GO-MCP Technology Stack
22

33
## Overview
44

.kiro/steering/testing-standards.md

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

33
## Testing Philosophy
44

CHANGELOG.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<img src="https://github.com/telemetryflow/.github/raw/main/docs/assets/tfo-logo-mcp-light.svg" alt="TelemetryFlow Logo" width="80%">
66
</picture>
77

8-
<h3>TelemetryFlow GO MCP Server (TFO-MCP)</h3>
8+
<h3>TelemetryFlow GO MCP Server (TFO-GO-MCP)</h3>
99

1010
[![Version](https://img.shields.io/badge/Version-1.1.2-orange.svg)](CHANGELOG.md)
1111
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
@@ -23,7 +23,7 @@
2323

2424
# Changelog
2525

26-
All notable changes to TelemetryFlow GO MCP Server (TFO-MCP) will be documented in this file.
26+
All notable changes to TelemetryFlow GO MCP Server (TFO-GO-MCP) will be documented in this file.
2727

2828
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
2929
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
@@ -178,7 +178,7 @@ No breaking changes. Update your binary and restart the server.
178178

179179
```bash
180180
# Download new version
181-
curl -LO https://github.com/telemetryflow/telemetryflow-mcp/releases/download/v1.1.2/tfo-mcp_$(uname -s)_$(uname -m).tar.gz
181+
curl -LO https://github.com/telemetryflow/telemetryflow-go-mcp/releases/download/v1.1.2/tfo-mcp_$(uname -s)_$(uname -m).tar.gz
182182

183183
# Extract and install
184184
tar -xzf tfo-mcp_*.tar.gz
@@ -192,11 +192,11 @@ tfo-mcp version
192192

193193
## Links
194194

195-
- [GitHub Repository](https://github.com/telemetryflow/telemetryflow-mcp)
195+
- [GitHub Repository](https://github.com/telemetryflow/telemetryflow-go-mcp)
196196
- [Documentation](docs/README.md)
197-
- [Issue Tracker](https://github.com/telemetryflow/telemetryflow-mcp/issues)
197+
- [Issue Tracker](https://github.com/telemetryflow/telemetryflow-go-mcp/issues)
198198

199-
[Unreleased]: https://github.com/telemetryflow/telemetryflow-mcp/compare/v1.1.2...HEAD
200-
[1.1.2]: https://github.com/telemetryflow/telemetryflow-mcp/compare/v1.1.1...v1.1.2
201-
[1.1.1]: https://github.com/telemetryflow/telemetryflow-mcp/compare/v1.1.0...v1.1.1
202-
[1.1.0]: https://github.com/telemetryflow/telemetryflow-mcp/releases/tag/v1.1.0
199+
[Unreleased]: https://github.com/telemetryflow/telemetryflow-go-mcp/compare/v1.1.2...HEAD
200+
[1.1.2]: https://github.com/telemetryflow/telemetryflow-go-mcp/compare/v1.1.1...v1.1.2
201+
[1.1.1]: https://github.com/telemetryflow/telemetryflow-go-mcp/compare/v1.1.0...v1.1.1
202+
[1.1.0]: https://github.com/telemetryflow/telemetryflow-go-mcp/releases/tag/v1.1.0

0 commit comments

Comments
 (0)