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
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
vybenetwork avatar

Solana MCP by Vybe

vybenetwork/solana-mcp-vybe
authHTTPregistry active
Summary

A public MCP endpoint that gives Claude direct access to Solana's onchain data and trading infrastructure. You get wallet queries, market data, PnL tracking, transfer history, and signable swap transactions all through a single streamable HTTP server at mcp.vybenetwork.xyz. Authentication runs through OAuth, so no API keys in your config files. Useful when you need to query token balances, analyze trading performance, or prepare Solana transactions without leaving your editor. The server exposes Vybe's full Solana API surface, so you can browse schemas or make live calls for anything from simple balance checks to complex DeFi operations. Setup is just pointing your MCP client at the URL and completing the OAuth flow.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try 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 →
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 →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try 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 →
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 →

Solana MCP by Vybe

Solana MCP by Vybe lets Cursor, Claude, Codex, and other MCP clients browse schemas or make live Solana API calls through one public MCP server.

Public Model Context Protocol (MCP) registry metadata for Solana MCP by Vybe.

MCP endpoint

Use the streamable HTTP endpoint:

https://mcp.vybenetwork.xyz/mcp

Registry metadata (server.json) publishes the remote as:

https://mcp.vybenetwork.xyz

Clients that require an explicit MCP path (ChatGPT Developer Mode, Codex, Cursor HTTP) should use https://mcp.vybenetwork.xyz/mcp.

Copy-paste setup for the public docs site: docs/mcp.md. Live product guides: docs.vybenetwork.com/docs/mcp (still may show the old .com host until that site is updated).

Quick setup

Cursor / Windsurf / Codex-style HTTP

{
  "mcpServers": {
    "solana-mcp-vybe": {
      "type": "http",
      "url": "https://mcp.vybenetwork.xyz/mcp"
    }
  }
}

Same snippet: examples/cursor-mcp.json.

Claude Desktop via mcp-remote

{
  "mcpServers": {
    "solana-mcp-vybe": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.vybenetwork.xyz/mcp"]
    }
  }
}

Claude.ai custom connector

Name: Solana MCP by Vybe
URL:  https://mcp.vybenetwork.xyz/mcp

Authenticate with OAuth when the client prompts. Do not commit API keys into this repo.

What this repository holds

  • server.json — metadata published to the official MCP Registry (GitHub Actions). Remote URL: https://mcp.vybenetwork.xyz.
  • .mcp.json and mcp.json — root MCP/plugin configs for directory UIs (e.g. Cursor “Submit a Plugin”). Native HTTP to https://mcp.vybenetwork.xyz/mcp — no secrets.
  • .codex-plugin/plugin.json — Codex plugin metadata for local install/refresh against the same MCP URL.
  • chatgpt-app-submission.json — draft ChatGPT Apps submission fields.

Available tools

ToolDescription
list-endpointsBrowse API paths with methods and summaries
search-endpointsSearch paths, operations, and schemas by keyword
get-endpointFull OpenAPI details for one path and method
execute-requestLive authenticated API calls
pay-with-x402x402 pay-per-call integration guidance

GitHub repository name

vybenetwork/solana-mcp-vybe (starts with solana-mcp, includes Vybe).

Publish a new listing version

  1. Clone or use this repo at github.com/vybenetwork/solana-mcp-vybe

  2. Tag and push (the workflow sets server.json version from the tag):

    git tag v1.0.0
    git push origin v1.0.0
    

    Or run Actions → Publish to MCP Registry → Run workflow (uses the version already in server.json).

Publishing uses GitHub OIDC in Actions; no personal token secret is required.

If you use mcp-publisher login github locally and get 403 for io.github.vybenetwork/...: Git apps like Git Credential Manager are unrelated. Open GitHub → Settings → Applications → Authorized OAuth Apps, choose the app you authorized during mcp-publisher login github (device flow), then under Organization access click Grant for vybenetwork. On SAML-enforced orgs, also complete SSO for that OAuth app. Then run mcp-publisher logout, mcp-publisher login github, and publish again.

  1. Verify:

    curl -sS "https://registry.modelcontextprotocol.io/v0.1/servers?search=vybenetwork" | jq .
    

Cursor and other directories

Use examples/cursor-mcp.json as the install snippet. For Cursor Directory, submit after the registry publish succeeds; use OAuth for https://mcp.vybenetwork.xyz/mcp.

Registry catalog id

server.json name: io.github.vybenetwork/solana-mcp-vybe. Display title: Solana MCP by Vybe.

Publish: push main, then git tag vX.Y.Z && git push origin vX.Y.Z, or Actions → Publish to MCP Registry.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
inference shell
inference shell
create and run specialised agents in minutes
build now →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try 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 →
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 →
Categories
Data & AnalyticsFinance & Commerce
Registryactive
TransportHTTP
AuthRequired
UpdatedApr 14, 2026
View on GitHub

More from vybenetwork

  • Solana MCP by Vybe1

Related Data & Analytics MCP Servers

View all →
writesdavid avatar
Open Primitive

io.github.writesdavid/open-primitive

33 tools, 30 US federal data domains. Ed25519 signed, provenance chains, entity graph. Free.
1
zerabic avatar
Agentweb

io.github.zerabic/agentweb

Free business data for AI agents. 11M+ businesses, 227 countries, phone/email/hours.
1
keypup-io avatar
Keypup Engineering Analytics

io.keypup/engineering-analytics

Generate answers & visualizations from your engineering data to track software development health.
1
jasoncbraatz avatar
Domain Monitor

jasoncbraatz/domain-monitor-mcp

Query domain expiration data from domain-monitor.io via AI assistants like Claude.
1
jdsource avatar
ClearMarket

jdsource/clearmarket

Reference data for prediction markets: graded resolution clarity, cross-venue links, provenance.
1
jscoobyced avatar
Jsc Typescript Ast Mcp

jscoobyced/jsc-typescript-ast-mcp

AST for TypeScript, supports creating JSON representations of React components
1