Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flux/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "mcp-flux-pro",
"name": "mcp-flux",
"displayName": "Flux MCP",
"description": "Flux image generation by Black Forest Labs — dev, pro, ultra, and kontext editing.",
"version": "0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion nanobanana/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "mcp-nanobanana-pro",
"name": "mcp-nanobanana",
"displayName": "NanoBanana MCP",
"description": "Gemini-powered NanoBanana — generate and edit images via natural language.",
"version": "0.2.0",
Expand Down
8 changes: 7 additions & 1 deletion scripts/build_vscode_extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ class Service:
pricing_note: str
domain: str
pypi_pkg: str
ext_name: str
publisher: str
signup_url: str
docs_url: str
Expand Down Expand Up @@ -94,6 +95,10 @@ def load_services() -> list[Service]:
with pyproject.open("rb") as fh:
pkg_data = tomllib.load(fh)
pypi_pkg = pkg_data["project"]["name"]
# VS Code extension id namespace is independent of PyPI. Default to
# `mcp-<alias>` to match the marketplace IDs we already own; allow an
# explicit override for future services whose alias diverges.
ext_name = cfg.get("ext_name") or f"mcp-{alias}"
services.append(
Service(
alias=alias,
Expand All @@ -107,6 +112,7 @@ def load_services() -> list[Service]:
pricing_note=cfg.get("pricing_note", "").strip(),
domain=cfg.get("domain", "general"),
pypi_pkg=pypi_pkg,
ext_name=ext_name,
publisher=defaults["publisher"],
signup_url=defaults["signup_url"],
docs_url=defaults["docs_url"],
Expand Down Expand Up @@ -143,7 +149,7 @@ def extract_tools(main_readme: Path) -> list[tuple[str, str]]:

def render_package_json(svc: Service) -> str:
pkg: dict[str, object] = {
"name": svc.pypi_pkg,
"name": svc.ext_name,
"displayName": svc.display_name,
"description": svc.tagline,
"version": "0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion seedream/vscode/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "mcp-seedream-pro",
"name": "mcp-seedream",
"displayName": "Seedream MCP",
"description": "Seedream by ByteDance — text-to-image and SeedEdit instruction-based editing.",
"version": "0.2.0",
Expand Down