mcp-server-madeonsol 1.7.3 โ†’ 1.7.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +19 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,10 +2,11 @@
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/mcp-server-madeonsol?style=flat-square)](https://www.npmjs.com/package/mcp-server-madeonsol)
4
4
  [![npm downloads](https://img.shields.io/npm/dm/mcp-server-madeonsol?style=flat-square)](https://www.npmjs.com/package/mcp-server-madeonsol)
5
+ [![Smithery](https://img.shields.io/badge/Smithery-listed-blueviolet?style=flat-square)](https://smithery.ai/servers/madeonsol/solana-kol-intelligence)
5
6
  [![MCP](https://img.shields.io/badge/MCP-compatible-blueviolet?style=flat-square)](https://modelcontextprotocol.io/)
6
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue?style=flat-square)](LICENSE)
7
8
 
8
- > ๐Ÿค– **[Use in Claude Desktop](#claude-desktop)** ยท ๐Ÿ–ฑ๏ธ **[Use in Cursor](#cursor)** ยท ๐Ÿ“š **[API docs](https://madeonsol.com/api-docs)** ยท ๐Ÿ’ฐ **[Free API key](https://madeonsol.com/pricing)**
9
+ > โšก **[Install via Smithery](#install-via-smithery-one-line)** ยท ๐Ÿค– **[Use in Claude Desktop](#claude-desktop)** ยท ๐Ÿ–ฑ๏ธ **[Use in Cursor](#cursor)** ยท ๐Ÿ“š **[API docs](https://madeonsol.com/api-docs)** ยท ๐Ÿ’ฐ **[Free API key](https://madeonsol.com/pricing)**
9
10
 
10
11
  MCP server for [MadeOnSol](https://madeonsol.com) Solana KOL intelligence API. Use from Claude Desktop, Cursor, or any MCP-compatible client.
11
12
 
@@ -13,7 +14,23 @@ MCP server for [MadeOnSol](https://madeonsol.com) Solana KOL intelligence API. U
13
14
 
14
15
  > **New in 1.7.0** *(2026-05-12)* โ€” Two new tools: **`madeonsol_me`** (account/quota introspection โ€” read tier, remaining requests, and per-feature usage without parsing rate-limit headers) and **`madeonsol_tokens_list`** (PRO+ filtered, sortable token directory โ€” MC band, liquidity floor, primary DEX, authority/safety flags, plus computed 1h volume / MEV-share / MC-change deltas). Token responses now expose **velocity / MEV-share** fields. Token directory defaults to **`min_liq=2000`** to skip phantom-MC dust โ€” pass `min_liq=0` to opt out. `/token/{mint}` now returns **structured 400 errors** (`code` / `reason` / `example` / `docs`) instead of plain strings. Deprecated `avg_entry_mc_usd` field fully removed from KOL/alpha leaderboards.
15
16
 
16
- ## Quick start (10 seconds)
17
+ ## Install via Smithery (one line)
18
+
19
+ [Smithery](https://smithery.ai/servers/madeonsol/solana-kol-intelligence) is the easiest path โ€” it writes the config for you and handles the install:
20
+
21
+ ```bash
22
+ npx -y smithery mcp add madeonsol/solana-kol-intelligence
23
+ ```
24
+
25
+ Smithery prompts for your `MADEONSOL_API_KEY` ([free at madeonsol.com/pricing](https://madeonsol.com/pricing)) and wires up Claude Desktop or your chosen MCP client. Restart the client and ask: *"What are KOLs buying right now?"*
26
+
27
+ You can also browse tools from the CLI:
28
+
29
+ ```bash
30
+ npx -y smithery tool get madeonsol/solana-kol-intelligence madeonsol_kol_feed
31
+ ```
32
+
33
+ ## Quick start โ€” manual config (10 seconds)
17
34
 
18
35
  ```bash
19
36
  npm install -g mcp-server-madeonsol
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-server-madeonsol",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "mcpName": "io.github.lambopoewert/madeonsol",
5
5
  "description": "MCP server for MadeOnSol Solana KOL intelligence API โ€” use from Claude, Cursor, or any MCP client",
6
6
  "type": "module",