Borrowing it
Nothing to install: this file belongs to glassBead-tc/widescreen-research. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/glassBead-tc/widescreen-research/main/.claude/commands/mcp-sdk-migrate.mdgit clone --depth 1 https://github.com/glassBead-tc/widescreen-researchWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/glassbead-tc/widescreen-research/mcp-sdk-migrate)<a href="https://agentmods.dev/commands/glassbead-tc/widescreen-research/mcp-sdk-migrate"><img src="https://agentmods.dev/badge/commands/glassbead-tc/widescreen-research/mcp-sdk-migrate/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/commands/glassbead-tc/widescreen-research/mcp-sdk-migrate"><img src="https://agentmods.dev/badge/commands/glassbead-tc/widescreen-research/mcp-sdk-migrate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00000 | $0.00509 |
| Opus 5 | $0.00000 | $0.00254 |
| Sonnet 5 | $0.00000 | $0.00102 |
| Haiku 4.5 | $0.00000 | $0.00051 |
Grade A, and why
mcp-sdk-migrate scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
What it actually says
MCP SDK Migration Command
Migrates Go MCP server code from unofficial mark3labs SDK to official modelcontextprotocol SDK.
Usage
/mcp-sdk-migrate [file_path]
What it does
- Analyzes the target Go file for mark3labs MCP patterns
- Converts to official SDK patterns
- Updates imports
- Transforms tool registration from declarative to AddTool pattern
- Updates server initialization and transport setup
- Preserves all business logic
Examples
# Migrate a single file
/mcp-sdk-migrate cmd/my-server/main.go
# Migrate server package
/mcp-sdk-migrate pkg/mcp/server.go
What gets converted
Imports
github.com/mark3labs/mcp-go/mcp→github.com/modelcontextprotocol/go-sdk/mcpgithub.com/mark3labs/mcp-go/server→ (removed, use mcp package)
Server Creation
server.NewMCPServer("name", "version", opts...)→mcp.NewServer(&mcp.Implementation{Name: "name", Version: "version"}, nil)
Tool Registration
mcp.NewTool(name, mcp.WithDescription(...), mcp.WithString(...))→ Type-safe struct with jsonschema tagsserver.AddTool(tool, handler)→mcp.AddTool(server, &mcp.Tool{...}, handler)
Handler Signature
func(ctx, mcp.CallToolRequest) (*mcp.CallToolResult, error)→func(ctx, *mcp.CallToolRequest, Args) (*mcp.CallToolResult, any, error)
Server Start
server.ServeStdio(server)→server.Run(ctx, &mcp.StdioTransport{})
Error Handling
mcp.NewToolResultError(msg)→&mcp.CallToolResult{IsError: true, Content: []mcp.Content{&mcp.TextContent{Text: msg}}}mcp.NewToolResultText(msg)→&mcp.CallToolResult{Content: []mcp.Content{&mcp.TextContent{Text: msg}}}
Notes
- Creates backup with
.backupextension - Preserves all comments and business logic
- May require manual adjustment for complex parameter extraction
- Always test after migration
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 65 lines · 0 tokens per session scan A 333f60bdd032
mcp-sdk-migrate is a command published in the GitHub repository glassBead-tc/widescreen-research (6 stars, last pushed 10mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 509 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other commands, from other repositories
check-go
Run Go code quality checks including formatting, linting, vetting, and tests.
golang-test-review
Use when reviewing Go test code (new or changed test.go files, test harnesses, fixtures, or test tooling) for a Go-test-expert pass — behavior-over-surface, determinism, parallel-safety, build-tag correctness, and harness reuse. Complements the general code-reviewer with test-specific rigor.
skill-go-gin-api
Padrões DARE para APIs REST em Go + Gin (ou stdlib net/http) + sqlc + PostgreSQL. Handlers, services, repositories, middleware, validador, JWT, rate limit, swag OpenAPI.
go-conventions
Scan the current Go repo and write .claude/go-conventions.md — a project-specific convention file that rules/go.md loads on every session instead of re-scanning the codebase from scratch. Use when starting work in a new Go repo, when conventions have drifted, or when --refresh is passed to merge in new patterns.
go-test
A Go testing command that follows test-driven development, or TDD: write a failing test, implement the smallest change that passes it, then improve the code.
go-review
Go code review for idiomatic patterns.