-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrepomix-output.txt
9465 lines (8097 loc) · 274 KB
/
repomix-output.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
This file is a merged representation of the entire codebase, combined into a single document by Repomix.
================================================================
File Summary
================================================================
Purpose:
--------
This file contains a packed representation of the entire repository's contents.
It is designed to be easily consumable by AI systems for analysis, code review,
or other automated processes.
File Format:
------------
The content is organized as follows:
1. This summary section
2. Repository information
3. Directory structure
4. Multiple file entries, each consisting of:
a. A separator line (================)
b. The file path (File: path/to/file)
c. Another separator line
d. The full contents of the file
e. A blank line
Usage Guidelines:
-----------------
- This file should be treated as read-only. Any changes should be made to the
original repository files, not this packed version.
- When processing this file, use the file path to distinguish
between different files in the repository.
- Be aware that this file may contain sensitive information. Handle it with
the same level of security as you would the original repository.
Notes:
------
- Some files may have been excluded based on .gitignore rules and Repomix's configuration
- Binary files are not included in this packed representation. Please refer to the Repository Structure section for a complete list of file paths, including binary files
- Files matching patterns in .gitignore are excluded
- Files matching default ignore patterns are excluded
- Files are sorted by Git change count (files with more changes are at the bottom)
Additional Info:
----------------
================================================================
Directory Structure
================================================================
.cursor/
rules/
global.mdc
mcp.json
.github/
workflows/
go.yml
FUNDING.yml
cmd/
server/
main.go
docs/
REFACTORING.md
examples/
client/
simple_client.go
test_script.sh
internal/
config/
config_test.go
config.go
logger/
logger_test.go
logger.go
mcp/
handlers.go
session/
session_test.go
session.go
transport/
sse.go
pkg/
core/
core.go
db/
db_test.go
db.go
README.md
dbtools/
db_helpers.go
dbtools_test.go
dbtools.go
exec.go
performance_test.go
performance.go
query.go
querybuilder_test.go
querybuilder.go
README.md
schema_test.go
schema.go
tx_test.go
tx.go
jsonrpc/
jsonrpc.go
tools/
tools.go
.dockerignore
.env.example
.gitignore
.golangci.yml
coverage.out
docker-compose.yml
Dockerfile
go.mod
LICENSE
Makefile
README.md
================================================================
Files
================================================================
================
File: pkg/dbtools/performance_test.go
================
package dbtools
import (
"context"
"testing"
"time"
)
func TestPerformanceAnalyzer(t *testing.T) {
// Create a new performance analyzer
analyzer := NewPerformanceAnalyzer()
// Test tracking a query
ctx := context.Background()
result, err := analyzer.TrackQuery(ctx, "SELECT * FROM test_table", []interface{}{}, func() (interface{}, error) {
// Simulate query execution with sleep
time.Sleep(5 * time.Millisecond)
return "test result", nil
})
// Check results
if err != nil {
t.Errorf("Expected no error, got %v", err)
}
if result != "test result" {
t.Errorf("Expected result to be 'test result', got %v", result)
}
// Check metrics were collected
metrics := analyzer.GetAllMetrics()
if len(metrics) == 0 {
t.Error("Expected metrics to be collected, got none")
}
// Find the test query in metrics
var foundMetrics *QueryMetrics
for _, m := range metrics {
if m.Query == "SELECT * FROM test_table" {
foundMetrics = m
break
}
}
if foundMetrics == nil {
t.Error("Expected to find metrics for the test query, got none")
} else {
// Check metrics values
if foundMetrics.Count != 1 {
t.Errorf("Expected count to be 1, got %d", foundMetrics.Count)
}
if foundMetrics.AvgDuration < time.Millisecond {
t.Errorf("Expected average duration to be at least 1ms, got %v", foundMetrics.AvgDuration)
}
}
}
func TestQueryAnalyzer(t *testing.T) {
testCases := []struct {
name string
query string
expectation string
}{
{
name: "SELECT * detection",
query: "SELECT * FROM users",
expectation: "Avoid using SELECT * - specify only the columns you need",
},
{
name: "Missing WHERE detection",
query: "SELECT id, name FROM users",
expectation: "Consider adding a WHERE clause to limit the result set",
},
{
name: "JOIN without ON detection",
query: "SELECT u.id, p.name FROM users u JOIN profiles p",
expectation: "Ensure all JOINs have proper conditions",
},
{
name: "ORDER BY detection",
query: "SELECT id, name FROM users WHERE id > 100 ORDER BY name",
expectation: "Verify that ORDER BY columns are properly indexed",
},
{
name: "Subquery detection",
query: "SELECT id, name FROM users WHERE id IN (SELECT user_id FROM orders)",
expectation: "Consider replacing subqueries with JOINs where possible",
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
suggestions := AnalyzeQuery(tc.query)
// Check if the expected suggestion is in the list
found := false
for _, s := range suggestions {
if s == tc.expectation {
found = true
break
}
}
if !found {
t.Errorf("Expected to find suggestion '%s' for query '%s', but got suggestions: %v",
tc.expectation, tc.query, suggestions)
}
})
}
}
func TestNormalizeQuery(t *testing.T) {
testCases := []struct {
name string
input string
expected string
}{
{
name: "Number replacement",
input: "SELECT * FROM users WHERE id = 123",
expected: "SELECT * FROM users WHERE id = ?",
},
{
name: "String replacement",
input: "SELECT * FROM users WHERE name = 'John Doe'",
expected: "SELECT * FROM users WHERE name = '?'",
},
{
name: "Double quotes replacement",
input: "SELECT * FROM \"users\" WHERE \"name\" = \"John Doe\"",
expected: "SELECT * FROM \"?\" WHERE \"?\" = \"?\"",
},
{
name: "Multiple whitespace",
input: "SELECT * FROM users",
expected: "SELECT * FROM users",
},
{
name: "Complex query",
input: "SELECT u.id, p.name FROM users u JOIN profiles p ON u.id = 123 AND p.name = 'test'",
expected: "SELECT u.id, p.name FROM users u JOIN profiles p ON u.id = ? AND p.name = '?'",
},
}
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
result := normalizeQuery(tc.input)
if result != tc.expected {
t.Errorf("Expected normalized query '%s', got '%s'", tc.expected, result)
}
})
}
}
================
File: pkg/dbtools/performance.go
================
package dbtools
import (
"context"
"fmt"
"regexp"
"sort"
"strings"
"sync"
"time"
"github.com/FreePeak/db-mcp-server/internal/logger"
"github.com/FreePeak/db-mcp-server/pkg/tools"
)
// QueryMetrics stores performance metrics for a database query
type QueryMetrics struct {
Query string // SQL query text
Count int // Number of times the query was executed
TotalDuration time.Duration // Total execution time
MinDuration time.Duration // Minimum execution time
MaxDuration time.Duration // Maximum execution time
AvgDuration time.Duration // Average execution time
LastExecuted time.Time // When the query was last executed
}
// PerformanceAnalyzer tracks and analyzes database query performance
type PerformanceAnalyzer struct {
metrics map[string]*QueryMetrics // Map of query metrics keyed by normalized query string
slowThreshold time.Duration // Threshold for identifying slow queries (default: 500ms)
mutex sync.RWMutex // Mutex for thread-safe access to metrics
enabled bool // Whether performance analysis is enabled
}
// NewPerformanceAnalyzer creates a new performance analyzer with default settings
func NewPerformanceAnalyzer() *PerformanceAnalyzer {
return &PerformanceAnalyzer{
metrics: make(map[string]*QueryMetrics),
slowThreshold: 500 * time.Millisecond,
enabled: true,
}
}
// TrackQuery wraps a database query execution to track its performance
func (pa *PerformanceAnalyzer) TrackQuery(ctx context.Context, query string, params []interface{}, fn func() (interface{}, error)) (interface{}, error) {
if !pa.enabled {
return fn()
}
// Start timing
startTime := time.Now()
// Execute the query
result, err := fn()
// Calculate duration
duration := time.Since(startTime)
// Log slow queries immediately
if duration >= pa.slowThreshold {
paramStr := formatParams(params)
logger.Warn("Slow query detected (%.2fms): %s [params: %s]",
float64(duration.Milliseconds()), query, paramStr)
}
// Update metrics asynchronously to avoid performance impact
go pa.updateMetrics(query, duration)
return result, err
}
// updateMetrics updates the performance metrics for a query
func (pa *PerformanceAnalyzer) updateMetrics(query string, duration time.Duration) {
// Normalize the query by removing specific parameter values
normalizedQuery := normalizeQuery(query)
pa.mutex.Lock()
defer pa.mutex.Unlock()
// Get or create metrics for this query
metrics, ok := pa.metrics[normalizedQuery]
if !ok {
metrics = &QueryMetrics{
Query: query,
MinDuration: duration,
MaxDuration: duration,
LastExecuted: time.Now(),
}
pa.metrics[normalizedQuery] = metrics
}
// Update metrics
metrics.Count++
metrics.TotalDuration += duration
metrics.AvgDuration = metrics.TotalDuration / time.Duration(metrics.Count)
metrics.LastExecuted = time.Now()
if duration < metrics.MinDuration {
metrics.MinDuration = duration
}
if duration > metrics.MaxDuration {
metrics.MaxDuration = duration
}
}
// GetSlowQueries returns the list of slow queries that exceed the threshold
func (pa *PerformanceAnalyzer) GetSlowQueries() []*QueryMetrics {
pa.mutex.RLock()
defer pa.mutex.RUnlock()
var slowQueries []*QueryMetrics
for _, metrics := range pa.metrics {
if metrics.AvgDuration >= pa.slowThreshold {
slowQueries = append(slowQueries, metrics)
}
}
// Sort by average duration (slowest first)
sort.Slice(slowQueries, func(i, j int) bool {
return slowQueries[i].AvgDuration > slowQueries[j].AvgDuration
})
return slowQueries
}
// SetSlowThreshold sets the threshold for identifying slow queries
func (pa *PerformanceAnalyzer) SetSlowThreshold(threshold time.Duration) {
pa.mutex.Lock()
defer pa.mutex.Unlock()
pa.slowThreshold = threshold
}
// Enable enables performance analysis
func (pa *PerformanceAnalyzer) Enable() {
pa.mutex.Lock()
defer pa.mutex.Unlock()
pa.enabled = true
}
// Disable disables performance analysis
func (pa *PerformanceAnalyzer) Disable() {
pa.mutex.Lock()
defer pa.mutex.Unlock()
pa.enabled = false
}
// Reset clears all collected metrics
func (pa *PerformanceAnalyzer) Reset() {
pa.mutex.Lock()
defer pa.mutex.Unlock()
pa.metrics = make(map[string]*QueryMetrics)
}
// GetAllMetrics returns all collected query metrics sorted by average duration
func (pa *PerformanceAnalyzer) GetAllMetrics() []*QueryMetrics {
pa.mutex.RLock()
defer pa.mutex.RUnlock()
metrics := make([]*QueryMetrics, 0, len(pa.metrics))
for _, m := range pa.metrics {
metrics = append(metrics, m)
}
// Sort by average duration (slowest first)
sort.Slice(metrics, func(i, j int) bool {
return metrics[i].AvgDuration > metrics[j].AvgDuration
})
return metrics
}
// normalizeQuery removes specific parameter values from a query for grouping similar queries
func normalizeQuery(query string) string {
// Simplistic normalization - replace numbers and quoted strings with placeholders
// In a real-world scenario, use a more sophisticated SQL parser
normalized := query
// Replace quoted strings with placeholders
normalized = replaceRegex(normalized, `'[^']*'`, "'?'")
normalized = replaceRegex(normalized, `"[^"]*"`, "\"?\"")
// Replace numbers with placeholders
normalized = replaceRegex(normalized, `\b\d+\b`, "?")
// Remove extra whitespace
normalized = replaceRegex(normalized, `\s+`, " ")
return strings.TrimSpace(normalized)
}
// replaceRegex is a simple helper to replace regex matches
func replaceRegex(input, pattern, replacement string) string {
// Use the regexp package for proper regex handling
re, err := regexp.Compile(pattern)
if err != nil {
// If there's an error with the regex, just return the input
logger.Error("Error compiling regex pattern '%s': %v", pattern, err)
return input
}
return re.ReplaceAllString(input, replacement)
}
// formatParams formats query parameters for logging
func formatParams(params []interface{}) string {
if len(params) == 0 {
return "none"
}
parts := make([]string, len(params))
for i, param := range params {
parts[i] = fmt.Sprintf("%v", param)
}
return strings.Join(parts, ", ")
}
// AnalyzeQuery provides optimization suggestions for a given query
func AnalyzeQuery(query string) []string {
suggestions := []string{}
// Check for SELECT *
if strings.Contains(strings.ToUpper(query), "SELECT *") {
suggestions = append(suggestions, "Avoid using SELECT * - specify only the columns you need")
}
// Check for missing WHERE clause in non-aggregate queries
if strings.Contains(strings.ToUpper(query), "SELECT") &&
!strings.Contains(strings.ToUpper(query), "WHERE") &&
!strings.Contains(strings.ToUpper(query), "GROUP BY") {
suggestions = append(suggestions, "Consider adding a WHERE clause to limit the result set")
}
// Check for potential JOINs without conditions
if strings.Contains(strings.ToUpper(query), "JOIN") &&
!strings.Contains(strings.ToUpper(query), "ON") &&
!strings.Contains(strings.ToUpper(query), "USING") {
suggestions = append(suggestions, "Ensure all JOINs have proper conditions")
}
// Check for ORDER BY on non-indexed columns (simplified check)
if strings.Contains(strings.ToUpper(query), "ORDER BY") {
suggestions = append(suggestions, "Verify that ORDER BY columns are properly indexed")
}
// Check for potential subqueries that could be joins
if strings.Contains(strings.ToUpper(query), "SELECT") &&
strings.Contains(strings.ToUpper(query), "IN (SELECT") {
suggestions = append(suggestions, "Consider replacing subqueries with JOINs where possible")
}
// Add generic suggestions if none found
if len(suggestions) == 0 {
suggestions = append(suggestions,
"Consider adding appropriate indexes for frequently queried columns",
"Review query execution plan with EXPLAIN to identify bottlenecks")
}
return suggestions
}
// Global instance of the performance analyzer
var performanceAnalyzer *PerformanceAnalyzer
// InitPerformanceAnalyzer initializes the global performance analyzer
func InitPerformanceAnalyzer() {
performanceAnalyzer = NewPerformanceAnalyzer()
}
// GetPerformanceAnalyzer returns the global performance analyzer instance
func GetPerformanceAnalyzer() *PerformanceAnalyzer {
if performanceAnalyzer == nil {
InitPerformanceAnalyzer()
}
return performanceAnalyzer
}
// createPerformanceAnalyzerTool creates a tool for analyzing database performance
func createPerformanceAnalyzerTool() *tools.Tool {
return &tools.Tool{
Name: "dbPerformanceAnalyzer",
Description: "Identify slow queries and optimization opportunities",
Category: "database",
InputSchema: tools.ToolInputSchema{
Type: "object",
Properties: map[string]interface{}{
"action": map[string]interface{}{
"type": "string",
"description": "Action to perform (getSlowQueries, getMetrics, analyzeQuery, reset, setThreshold)",
"enum": []string{"getSlowQueries", "getMetrics", "analyzeQuery", "reset", "setThreshold"},
},
"query": map[string]interface{}{
"type": "string",
"description": "SQL query to analyze (required for analyzeQuery action)",
},
"threshold": map[string]interface{}{
"type": "integer",
"description": "Threshold in milliseconds for identifying slow queries (required for setThreshold action)",
},
"limit": map[string]interface{}{
"type": "integer",
"description": "Maximum number of results to return (default: 10)",
},
},
Required: []string{"action"},
},
Handler: handlePerformanceAnalyzer,
}
}
// handlePerformanceAnalyzer handles the performance analyzer tool execution
func handlePerformanceAnalyzer(ctx context.Context, params map[string]interface{}) (interface{}, error) {
// Check if database is initialized
if dbInstance == nil {
return nil, fmt.Errorf("database not initialized")
}
// Get the performance analyzer
analyzer := GetPerformanceAnalyzer()
// Extract action parameter
action, ok := getStringParam(params, "action")
if !ok {
return nil, fmt.Errorf("action parameter is required")
}
// Extract limit parameter (default: 10)
limit := 10
if limitParam, ok := getIntParam(params, "limit"); ok {
limit = limitParam
}
// Handle different actions
switch action {
case "getSlowQueries":
// Get slow queries
slowQueries := analyzer.GetSlowQueries()
// Apply limit
if len(slowQueries) > limit {
slowQueries = slowQueries[:limit]
}
// Convert to response format
result := makeMetricsResponse(slowQueries)
return result, nil
case "getMetrics":
// Get all metrics
metrics := analyzer.GetAllMetrics()
// Apply limit
if len(metrics) > limit {
metrics = metrics[:limit]
}
// Convert to response format
result := makeMetricsResponse(metrics)
return result, nil
case "analyzeQuery":
// Extract query parameter
query, ok := getStringParam(params, "query")
if !ok {
return nil, fmt.Errorf("query parameter is required for analyzeQuery action")
}
// Analyze the query
suggestions := AnalyzeQuery(query)
return map[string]interface{}{
"query": query,
"suggestions": suggestions,
}, nil
case "reset":
// Reset metrics
analyzer.Reset()
return map[string]interface{}{
"success": true,
"message": "Performance metrics have been reset",
}, nil
case "setThreshold":
// Extract threshold parameter
thresholdMs, ok := getIntParam(params, "threshold")
if !ok {
return nil, fmt.Errorf("threshold parameter is required for setThreshold action")
}
// Set threshold
analyzer.SetSlowThreshold(time.Duration(thresholdMs) * time.Millisecond)
return map[string]interface{}{
"success": true,
"message": "Slow query threshold updated",
"threshold": fmt.Sprintf("%dms", thresholdMs),
}, nil
default:
return nil, fmt.Errorf("unknown action: %s", action)
}
}
// makeMetricsResponse converts metrics to a response format
func makeMetricsResponse(metrics []*QueryMetrics) map[string]interface{} {
queries := make([]map[string]interface{}, len(metrics))
for i, m := range metrics {
queries[i] = map[string]interface{}{
"query": m.Query,
"count": m.Count,
"avgDuration": fmt.Sprintf("%.2fms", float64(m.AvgDuration.Microseconds())/1000),
"minDuration": fmt.Sprintf("%.2fms", float64(m.MinDuration.Microseconds())/1000),
"maxDuration": fmt.Sprintf("%.2fms", float64(m.MaxDuration.Microseconds())/1000),
"totalDuration": fmt.Sprintf("%.2fms", float64(m.TotalDuration.Microseconds())/1000),
"lastExecuted": m.LastExecuted.Format(time.RFC3339),
}
}
return map[string]interface{}{
"queries": queries,
"count": len(metrics),
}
}
================
File: .cursor/rules/global.mdc
================
---
description:
globs:
alwaysApply: true
---
You are an expert in Golang, TypeScript, and JavaScript development, focusing on scalable, maintainable, and performant code. Follow these principles for all suggestions, code generation, and responses:
# General Principles
- Write clean, idiomatic code following the conventions of each language.
- Prioritize simplicity, readability, and performance.
- Use meaningful variable names (e.g., `userCount` instead of `uc`, `isActive` instead of `a`).
- Avoid over-engineering; favor straightforward solutions unless complexity is justified.
- Include error handling where applicable, following language-specific best practices.
- Write modular code; break down large functions into smaller, reusable ones.
- Keep source code files under 250 lines
# Tooling and Workflow
- Assume a modern development environment with linting (e.g., ESLint for TS/JS, golangci-lint for Go).
- Prefer standard libraries unless a third-party package provides significant value.
- Use version control best practices (e.g., small, focused commits).
# ASSISTANT RULES
- Holistic understanding of requirements & stack
- Don’t apologize for errors: fix them
- You may ask about stack assumptions if writing code
# Codebase context
- Read from repomix-output.txt
================
File: .github/workflows/go.yml
================
name: Go Build & Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.18'
check-latest: true
- name: Check out code
uses: actions/checkout@v3
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.18'
check-latest: true
- name: Check out code
uses: actions/checkout@v3
- name: Install golangci-lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.55.2
- name: Run golangci-lint
run: golangci-lint run --timeout=5m
================
File: .github/FUNDING.yml
================
# These are supported funding model platforms
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
polar: # Replace with a single Polar username
buy_me_a_coffee: linhdmn
thanks_dev: # Replace with a single thanks.dev username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
================
File: docs/REFACTORING.md
================
# MCP Server Refactoring Documentation
## Overview
This document outlines the refactoring changes made to the MCP server to better support VS Code and Cursor extension integration. The refactoring focused on standardizing tool definitions, improving error handling, and adding editor-specific functionality.
## Key Changes
### 1. Enhanced Tool Structure
The `Tool` structure was extended to support:
- Context-aware execution with proper cancellation support
- Categorization of tools (e.g., "editor" category)
- Better schema validation
- Progress reporting during execution
```go
// Before
type Tool struct {
Name string
Description string
InputSchema ToolInputSchema
Handler func(params map[string]interface{}) (interface{}, error)
}
// After
type Tool struct {
Name string
Description string
InputSchema ToolInputSchema
Category string // New field for grouping tools
CreatedAt time.Time // New field for tracking tool registration
RawSchema interface{} // Alternative schema representation
Handler func(ctx context.Context, params map[string]interface{}) (interface{}, error) // Context-aware
}
```
### 2. Dynamic Tool Registration
The tool registry was improved to support:
- Runtime tool registration and deregistration
- Tool categorization and filtering
- Input validation against schemas
- Timeouts and context handling
New methods added:
- `DeregisterTool`
- `GetToolsByCategory`
- `ExecuteToolWithTimeout`
- `ValidateToolInput`
### 3. Editor Integration Support
Added support for editor-specific functionality:
- New editor context method (`editor/context`) for receiving editor state
- Session data storage for maintaining editor context
- Editor-specific tools (file info, code completion, code analysis)
- Category-based tool organization
### 4. Improved Error Handling
Enhanced error handling with:
- Structured error responses for both protocol and tool execution errors
- New error types with clear error codes
- Proper error propagation from tools to clients
- Context-based cancellation and timeout handling
### 5. Progress Reporting
Added support for reporting progress during tool execution:
- Progress token support in tool execution requests
- Notification channel for progress events
- Integration with the SSE transport for real-time updates
### 6. Client Compatibility
Improved compatibility with VS Code and Cursor extensions:
- Added alias method `tools/execute` (alternative to `tools/call`)
- Standardized response format following MCP specification
- Properly formatted tool schemas matching client expectations
- Support for client-specific notification formats
## Implementation Details
### Tool Registration Flow
1. Tools are defined with a name, description, input schema, and handler function
2. Tools are registered with the tool registry during server initialization
3. When a client connects, available tools are advertised through the `tools/list` method
4. Clients can execute tools via the `tools/call` or `tools/execute` methods
### Tool Execution Flow
1. Client sends a tool execution request with tool name and arguments
2. Server validates the arguments against the tool's input schema
3. If validation passes, the tool handler is executed with a context
4. Progress updates are sent during execution if requested
5. Results are formatted according to the MCP specification and returned to the client
### Error Handling Flow
1. If input validation fails, a structured error response is returned
2. If tool execution fails, the error is captured and returned in a format visible to LLMs
3. If the tool is not found or the request format is invalid, appropriate error codes are returned
## Testing Strategy
1. Test basic tool execution with the standard tools
2. Test editor-specific tools with mocked editor context
3. Test error handling with invalid inputs
4. Test progress reporting with long-running tools
5. Test timeouts with deliberately slow tools
## Future Improvements
1. Implement full JSON Schema validation for tool inputs
2. Add more editor-specific tools leveraging editor context
3. Implement persistent storage for tool results
4. Add authentication and authorization for tool execution
5. Implement streaming tool results for long-running operations
================
File: examples/client/simple_client.go
================
package main
import (
"bytes"
"encoding/json"
"flag"
"fmt"
"io"
"log"
"net/http"
"time"
)
// SimpleJSONRPCRequest represents a JSON-RPC request
type SimpleJSONRPCRequest struct {
JSONRPC string `json:"jsonrpc"`
ID int `json:"id,omitempty"`
Method string `json:"method"`
Params interface{} `json:"params,omitempty"`
}
// SimpleJSONRPCResponse represents a JSON-RPC response
type SimpleJSONRPCResponse struct {
JSONRPC string `json:"jsonrpc"`
ID int `json:"id,omitempty"`
Result interface{} `json:"result,omitempty"`
Error *struct {
Code int `json:"code"`
Message string `json:"message"`
Data interface{} `json:"data,omitempty"`
} `json:"error,omitempty"`
}
func main() {
// Parse command line flags
serverURL := flag.String("server", "http://localhost:9090", "MCP server URL")
flag.Parse()
fmt.Printf("Testing MCP server at %s\n", *serverURL)
// Create a random session ID for testing
sessionID := fmt.Sprintf("test-session-%d", time.Now().Unix())
messageEndpoint := fmt.Sprintf("%s/message?sessionId=%s", *serverURL, sessionID)
// Send initialize request
fmt.Println("\nSending initialize request...")
initializeReq := SimpleJSONRPCRequest{
JSONRPC: "2.0",
ID: 1,
Method: "initialize",
Params: map[string]interface{}{
"protocolVersion": "1.0.0",
"clientInfo": map[string]string{
"name": "Simple Test Client",
"version": "1.0.0",