CCM
/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

Claude Code Marketplaces

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

EQVPS — pay-per-use VPS for AI agents (API + MCP)

poiuyhje/eqvps-mcp
HTTPregistry active
Summary

Connects Claude to EQVPS, a no-KYC VPS host designed for autonomous agents. Your AI can call register_account to create its own account, list_plans to browse offerings, topup_balance to generate a crypto payment invoice, then order_vps to spin up servers. Once running, the agent gets full control: power_vps for reboots, reinstall_vps for OS changes, get_vps_status for SSH credentials, cancel_service to tear down. Payment is crypto-only (USDC/USDT) via prepaid balance. Reach for this when you want an agent to provision and manage its own compute without human gatekeeping. The one manual step is funding the initial balance; after that, it's hands-off.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →

EQVPS — MCP Server

API-native, pay-per-use, no-KYC VPS hosting that AI agents can rent and run by themselves. EQVPS exposes a Model Context Protocol server so an autonomous agent can discover plans, create an account, pay with crypto, order a VPS, and fully operate it — no human in the loop — agents provision programmatically.

  • 🌐 Website: https://eqvps.com
  • 📚 Docs (REST + MCP): https://eqvps.com/docs
  • 🔌 MCP endpoint: https://mcp.eqvps.com/mcp (transport: streamable-http)
  • 💸 Payment: crypto only — USDC/USDT on Base + Ethereum, USDT on Tron (via PayRam). No KYC.
  • 📝 Blog (guides): https://eqvps.com/blog

This is a hosted, commercial remote MCP server — not a no-auth public toy. Most tools require a Bearer token tied to a customer account with a prepaid crypto balance. Provisioning a VPS spends prepaid balance funded with topup_balance. Catalog tools (list_plans) are public.

Authentication paths (do not mix)

  • AI AGENTS (this MCP): call register_account — the agent itself supplies credentials and gets a Bearer token immediately. No email, no OTP code, no human step. This is the path for autonomous agents. Send the token as Authorization: Bearer <token>.
  • HUMANS (website eqvps.com): passwordless email OTP code — for people in a browser only. Agents cannot use this (they cannot read email).

An MCP agent must use register_account, never the email-OTP human flow. If a model suggests "wait for a code from your email", that is wrong for agents — the agent already has its token from register_account.

Quickstart — connect in one command

Step 1 — add the server (Claude Code, one command):

claude mcp add --transport http eqvps https://mcp.eqvps.com/mcp

Step 2 — tell your agent, in plain language (copy-paste):

Register an EQVPS account, show me plans, create a crypto top-up invoice for $20, then once I confirm payment, order 2 Ubuntu 24.04 VPS and give me their SSH access.

Be honest about what's autonomous:

  • ⚠️ The agent does everything via tools except funding: a human sends crypto to the top-up invoice once. After the balance is funded, the agent orders VPS fully autonomously (pays from balance). (No x402 / agent-native payment yet.)
  • ♻️ Repeat purchases with a funded balance are fully hands-off — just ask the agent.
  • 🔧 Generic / OpenClaw / other MCP clients: use the JSON config block below.

Connect

Remote server (no install, no Docker) — point any MCP client at the endpoint:

{
  "mcpServers": {
    "eqvps": {
      "url": "https://mcp.eqvps.com/mcp",
      "transport": "streamable-http"
    }
  }
}

Machine-readable manifest: /.well-known/mcp.json · live at https://eqvps.com/.well-known/mcp.json

Tools (16)

ToolAuthDescription
list_planspublicList available VPS plans with pricing, specs and OS images.
register_accountpublicCreate an EQVPS account (programmatic signup, no human in the loop). Returns a Bearer token.
loginpublicLog in with email + password; returns a Bearer token.
whoamibearerReturn the authenticated account profile.
get_balancebearerReturn prepaid credit balance and currency.
topup_balancebearerCreate a crypto top-up invoice; returns a PayRam checkout URL.
order_vpsbearerOrder a VPS by plan slug + OS id (pays from prepaid balance).
pay_invoicebearerPay an owned unpaid invoice; returns a crypto checkout URL.
list_vpsbearerList the account's VPS services (id, status, plan).
get_vps_statusbearerFull detail for one VPS: status, specs, live VM state/uptime, SSH access.
power_vpsbearerPower-control a VPS: start, stop or reboot.
set_hostnamebearerSet the VPS hostname (DNS label; applied on reboot/rebuild).
reset_passwordbearerReset the VPS root password.
reinstall_vpsbearerDestructive: wipe and reinstall the VPS with a given OS image.
cancel_servicebearerCancel a VPS: end_of_period (safe, default — runs until the paid period ends, then not renewed) or immediate (destroys VM + all data, requires confirm=hostname).
get_vps_metricsbearerTime-series resource metrics (CPU, memory, network, disk) for a VPS.

Typical agent flow

list_plans → register_account → topup_balance (pay crypto) → order_vps → get_vps_status (SSH access) → operate (power_vps, set_hostname, reinstall_vps, get_vps_metrics, cancel_service).

About

EQVPS is API-native, pay-per-use VPS hosting for humans and AI agents. NVMe, full root, instant deploy. The MCP server is a thin, hosted gateway to the EQVPS REST API — this repository is the public listing/manifest only; no server code or credentials are published here.

License

MIT — covers this repository's public listing content (README + manifest).

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
Email for Agents: Free tier availableEmail for Agents: Free tier available
Email for Agents: Free tier available
Give your AI agent a complete email layer—sending, inbound inboxes, and sandbox testing.
Get 4K emails/month free →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
AI notepad for back-to-back meetings
AI notepad for back-to-back meetings
Notes, actions and memory. Without a meeting bot. First month 100% off.
Download for free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Registryactive
TransportHTTP
UpdatedJun 7, 2026
View on GitHub