🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@ramaris/mcp-server

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

@ramaris/mcp-server

MCP server for Ramaris (ramaris.app) — on-chain wallet analytics and trading strategies on Base blockchain for Claude, Cursor, and AI assistants

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

Ramaris logo

@ramaris/mcp-server

MCP Server npm Smithery MCP Registry

Model Context Protocol (MCP) server for Ramaris — on-chain wallet analytics and trading strategies on Base. Gives AI assistants (Claude, Cursor, Windsurf, etc.) structured access to blockchain wallet data, strategy performance, and watchlists.

Quick Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "ramaris": {
      "command": "npx",
      "args": ["-y", "@ramaris/mcp-server"],
      "env": {
        "RAMARIS_API_KEY": "rms_your_api_key"
      }
    }
  }
}

Claude Code

claude mcp add ramaris -- npx -y @ramaris/mcp-server
# Then set RAMARIS_API_KEY in your environment

Cursor / Windsurf

Add to .cursor/mcp.json or .windsurf/mcp.json in your project:

{
  "mcpServers": {
    "ramaris": {
      "command": "npx",
      "args": ["-y", "@ramaris/mcp-server"],
      "env": {
        "RAMARIS_API_KEY": "rms_your_api_key"
      }
    }
  }
}

Remote (HTTP) — no install required

Connect directly via Streamable HTTP transport:

URL: https://api.ramaris.app/mcp
Authorization: Bearer rms_your_api_key

Get an API Key

  • Sign up at ramaris.app
  • Go to API Access
  • Create a new API key

Free tier gets 1 API key with strategies:read scope (100 req/hr). Strategy tools work immediately. Upgrade to PRO for wallet tools.

Available Tools

Strategy Tools (FREE tier)

ToolDescription
ramaris_list_strategiesList trading strategies sorted by last activity
ramaris_get_strategyGet detailed info about a specific strategy
ramaris_my_watchlistList strategies you are following

Wallet Tools (PRO+)

ToolDescription
ramaris_list_walletsList tracked wallets with optional filters for activity, token quality, and risk level
ramaris_get_walletGet detailed wallet info including top tokens

Wallet Filters

ramaris_list_wallets accepts a computed array parameter with these filter values:

  • Activity (OR): activeDay, activeWeek, stale
  • Token Quality (AND): hideMemeOnly — excludes wallets trading only risky/not-recommended tokens
  • Risk (AND): riskConservative, riskBalanced, riskHighRisk, riskDegen

User Tools (PRO+)

ToolDescription
ramaris_my_profileGet your profile info
ramaris_my_subscriptionGet your subscription details

Example Prompts

Once connected, try asking your AI assistant:

  • "List the top 5 strategies on Ramaris"
  • "Show me details for strategy abc123def"
  • "What strategies am I following?"
  • "Find the most profitable wallets" (PRO+)

Environment Variables

VariableRequiredDescription
RAMARIS_API_KEYYesYour Ramaris API key (rms_...)
RAMARIS_API_URLNoOverride API base URL (default: https://www.ramaris.app/api/v1)

Rate Limits

TierRequests/HourAvailable Tools
FREE100Strategy tools
PRO1,000All tools
ULTRA10,000All tools
ENTERPRISE100,000All tools

License

MIT

Keywords

ramaris

FAQs

Package last updated on 08 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts