CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Ink MCP

mldotink/mcp
HTTPregistry active
Summary

Connects Claude to ml.ink's deployment platform so you can ship apps, provision databases, and manage infrastructure without leaving your editor. Exposes tools for creating services from git repos, deploying Next.js/Flask/Go apps with auto-detection, provisioning SQLite databases via Turso, managing custom domains and DNS records, and handling team workspaces. You get full deployment lifecycle control: create, update, redeploy, tail logs, delete. Also handles git repo creation with push tokens and audit logging. Supports OAuth or API key auth over streamable HTTP. Reach for this when you want Claude to actually deploy your code or provision resources instead of just writing it.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Ink MCP

MCP server for deploying and managing applications on ml.ink.

Server URL: https://mcp.ml.ink/mcp
Transport:  Streamable HTTP
Auth:       OAuth 2.1 (PKCE) or API key

Authentication

OAuth

MCP clients that support OAuth handle the login flow automatically — add the server URL and sign in via browser.

API Key

  1. Sign up at ml.ink
  2. Settings → API Keys → Generate
  3. Pass via header: Authorization: Bearer dk_live_...

Client Setup

Claude Code

# OAuth
claude mcp add --transport http ink https://mcp.ml.ink/mcp

# API key
claude mcp add --transport http ink https://mcp.ml.ink/mcp \
  --header "Authorization: Bearer dk_live_YOUR_API_KEY"

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "ink": {
      "url": "https://mcp.ml.ink/mcp"
    }
  }
}

With API key:

{
  "mcpServers": {
    "ink": {
      "url": "https://mcp.ml.ink/mcp",
      "headers": {
        "Authorization": "Bearer dk_live_YOUR_API_KEY"
      }
    }
  }
}

Cursor

Settings → MCP → Add new MCP server:

{
  "mcpServers": {
    "ink": {
      "url": "https://mcp.ml.ink/mcp"
    }
  }
}

Windsurf

Settings → MCP → Add Server:

{
  "mcpServers": {
    "ink": {
      "serverUrl": "https://mcp.ml.ink/mcp"
    }
  }
}

Codex CLI

codex mcp add --transport http ink https://mcp.ml.ink/mcp \
  --header "Authorization: Bearer dk_live_YOUR_API_KEY"

Cline / Roo Code

Add to extension MCP settings:

{
  "mcpServers": {
    "ink": {
      "url": "https://mcp.ml.ink/mcp",
      "headers": {
        "Authorization": "Bearer dk_live_YOUR_API_KEY"
      }
    }
  }
}

Tools

Services

ToolDescription
create_serviceDeploy a service from a git repo
list_servicesList deployed services
get_serviceService details, build/runtime logs
update_serviceUpdate config (repo, branch, port, env, resources, commands)
redeploy_serviceRedeploy with latest code
delete_serviceDelete a service

Databases

ToolDescription
create_resourceProvision a database (SQLite via Turso)
list_resourcesList databases
get_resourceConnection details (URL + auth token)
delete_resourceDelete a database

Git

ToolDescription
create_repoCreate a git repo (internal or GitHub)
get_git_tokenTemporary push token

Custom Domains & DNS

ToolDescription
add_custom_domainAttach a custom domain to a service
remove_custom_domainRemove a custom domain
list_delegationsList delegated zones
add_dns_recordAdd DNS record (A/AAAA/CNAME/MX/TXT/CAA)
delete_dns_recordRemove a DNS record
list_dns_recordsList records in a zone

Workspaces

ToolDescription
workspace_listList workspaces
workspace_createCreate a team workspace
workspace_deleteDelete a workspace
workspace_inviteInvite by email or git username
workspace_accept_inviteAccept invite
workspace_decline_inviteDecline invite
workspace_revoke_inviteRevoke invite
workspace_remove_memberRemove member
workspace_list_membersList members and roles
workspace_list_invitesList pending invites

Other

ToolDescription
list_projectsList projects in a workspace
account_statusAccount details, balance, GitHub App status
chatSend/read workspace or project messages
list_action_logQuery audit log

Supported Frameworks

Auto-detected, no configuration needed:

  • JS/TS — Next.js, Remix, SvelteKit, Nuxt, Astro, Express, Fastify, Hono
  • Python — FastAPI, Flask, Django, Starlette
  • Go — Any Go server
  • Rust — Axum, Actix, Rocket
  • Ruby — Rails, Sinatra
  • Static — HTML/CSS/JS, Vite, CRA
  • Dockerfile — Custom via build_pack="dockerfile"

Links

  • ml.ink
  • Documentation
  • Status

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Developer Tools
Registryactive
TransportHTTP
UpdatedMar 5, 2026
View on GitHub

Related Developer Tools MCP Servers

View all →
Git Mcp Server

ray0907/git-mcp-server

MCP server for GitLab and GitHub
Git Mcp Server

cyanheads/git-mcp-server

Comprehensive Git MCP server enabling native git tools including clone, commit, worktree, & more.
221
Atlassian Dc Mcp Bitbucket

io.github.b1ff/atlassian-dc-mcp-bitbucket

MCP server for Atlassian Bitbucket Data Center - interact with repositories and code
77
Atlassian Dc Mcp Jira

io.github.b1ff/atlassian-dc-mcp-jira

MCP server for Atlassian Jira Data Center - search, view, and create issues
77
Atlassian Jira

com.mcparmory/atlassian-jira

Create, search, and manage issues, projects, and team workflows
25
Vscode Terminal Mcp

sirlordt/vscode-terminal-mcp

Execute commands in visible VSCode terminal tabs with output capture and session reuse.
1