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

Noesis — Solana On-Chain Intelligence

rengon0x/noesisapi
authHTTPregistry active
Summary

A Solana intelligence layer that surfaces on-chain signals most traders miss: bundled launches, fresh wallet clusters, dev funding trails, and wallet PnL broken down by timeframe. The 19 exposed tools span token scans (bundles, top holders, team supply, early buyers), wallet profiling (connections, history, funding sources), and cross-token analysis (shared holders and traders). Built for anyone trying to separate informed flow from coordination, whether you're scanning a new mint for sniper concentration or tracing a developer's prior launches. Runs as a remote MCP server over streamable HTTP, so no local setup. During beta it's free with per-wallet daily and monthly rate caps.

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 →

Noesis

On-chain intelligence that levels the playing field.

Solana token & wallet analytics · bundle detection · fresh-wallet clustering · dev profiling · live event streams

Website API Docs OpenAPI MCP Telegram

Website · Docs · Get an API key · Telegram bot


What is Noesis?

Every rug, every insider pump, every bundled launch leaves a trail. Most traders never see it — the tools are fragmented, expensive, or locked behind UIs that don't integrate with how people actually work.

Noesis collapses that into a single agent-native surface: one API, one MCP server, one chat. Built for traders, researchers, and AI agents that would rather see than guess.

Features

  • 🔍 Token analysis — market metrics, security flags, top traders, holder quality
  • 🧨 Bundle & sniper detection — bundler %, sniper count, fresh-wallet rate, dev holdings
  • 👛 Wallet profiling — PnL, winrate, 7d/30d stats, funding source, SOL transfer graph
  • 🆕 Fresh wallets — newly-created wallets holding a token, classified by age
  • 🧬 Dev profiling — creator PnL, every token they've made, funding trail
  • 🔗 Cross-token analysis — wallets holding or trading multiple tokens
  • 📡 Live event streams — real-time SSE for PumpFun, Raydium, Meteora
  • 💬 Natural-language chat — ask in plain English, answers grounded in on-chain data
  • 🤖 MCP server — native integration with Claude, Cursor, Cline, Windsurf
  • 📱 Telegram bot — full analysis surface in DMs or groups

Quick start

1. Get an API key

noesisapi.dev/keys — sign in with Solana, create a key.

2. Make a request

curl -H "X-API-Key: $NOESIS_API_KEY" \
  "https://noesisapi.dev/api/v1/token/<MINT>/preview"

3. Or use an SDK

# TypeScript / Node
npm install noesis-api

# Python
pip install noesis-api

# Rust
cargo add noesis-api
import { Noesis } from "noesis-api";

const noesis = new Noesis({ apiKey: process.env.NOESIS_API_KEY });
const preview = await noesis.token.preview("<MINT>");
console.log(preview);

MCP server

Add Noesis to any MCP-compatible client (Claude Desktop, Cursor, Cline, Windsurf):

{
  "mcpServers": {
    "noesis": {
      "url": "https://noesisapi.dev/mcp"
    }
  }
}

19 tools available — token analysis (token_scan, token_preview, token_info, token_holders, token_top_holders, token_bundles, token_fresh_wallets, token_team_supply, token_entry_price, token_dev_profile, token_best_traders, token_early_buyers), wallet analysis (wallet_profile, wallet_connections, wallet_history), cross-token (cross_holders, cross_traders), and on-chain (chain_status, transactions_parse). See full list.

Repository layout

PathDescription
openapi.yamlOpenAPI 3.1 specification
sdks/typescriptTypeScript / Node.js SDK — noesis-api on npm
sdks/pythonPython SDK — noesis-api on PyPI
sdks/rustRust SDK — noesis-api on crates.io
examples/Runnable examples in Bash, Node, Python, and Rust
docs/Guides and documentation

API surface

CategoryEndpoints
Tokenspreview · scan · top-holders · bundles · fresh-wallets · team-supply · dev-profile · best-traders · early-buyers · entry-price
Walletsprofile · history · connections · batch-identity
Cross-analysiscross-holders · cross-traders
On-chainaccount · accounts/batch · transactions/parse · chain/status
Live streams (SSE)pumpfun/new-tokens · pumpfun/migrations · raydium/new-pools · meteora/new-pools
Chatchat · chat/stats

Full reference: noesisapi.dev/docs · OpenAPI spec

Rate limits

Two layers apply to every authenticated API key. Noesis is free during beta — these are abuse-prevention caps, not pricing.

1. Per-second request rate

  • Light endpoints: 1 request/second
  • Heavy endpoints: 1 request / 5 seconds

Exceeding returns 429 with a Retry-After header and a JSON body: {error, limit, type, retry_after_seconds, signed_in}. All three SDKs surface this as a typed rate-limit error with retry_after_seconds as a first-class field.

2. Per-wallet daily + monthly usage cap (soft-launch — counters live, hard cap not yet enforced)

Each owner wallet has a usage budget shared across all of its API keys, so creating extra keys doesn't multiply your allowance.

  • 500 units/day, 10,000 units/month per wallet
  • Heavy endpoints (best-traders, top-holders, bundles, fresh-wallets, team-supply, dev-profile, early-buyers, entry-price, batch-identity, wallet/connections): 10 units each
  • Light endpoints (preview, info, ticker/resolve, basic wallet): 1 unit each
  • SSE streams: 0 units (no per-request cost)
  • MCP requests: 10 units each (one heavy call per request)

Every API response carries headers so you can pace yourself:

X-Credits-Limit: 500
X-Credits-Used: 32
X-Credits-Remaining: 468
X-Credits-Month-Limit: 10000
X-Credits-Month-Used: 32

Bypassed: signed-in web sessions (in-app at noesisapi.dev) and the Telegram bot. The cap only applies to direct API / SDK / MCP traffic.

Need more headroom? DM @Rengon0x on Telegram or X.

Status

✅ Live and actively developed · ⭐ star this repo for updates

License

Noesis is a hosted service. This repository contains landing-page content and public documentation.

The Noesis engine is closed-source. Client SDKs, examples, and the OpenAPI spec are published under the MIT License in sibling repositories.

Contact

  • 🌐 noesisapi.dev
  • 🤖 @noesisagent_bot
  • 📬 noesisapi.dev/feedback
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
Finance & Commerce
Registryactive
TransportHTTP
AuthRequired
UpdatedApr 16, 2026
View on GitHub

Related Finance & Commerce MCP Servers

View all →
Shopify Subscription Reconciliation MCP (Recharge Edition)

io.github.shelvick/shopify-subscription-reconciliation

Reconcile Shopify orders against Recharge subscription charges and Stripe payouts.
Google Ads

zleventer/google-ads-mcp

MCP server for Google Ads — 22 tools for spend diagnosis, impression share, and asset performance.
1
Meok Stripe Acp Checkout Mcp

csoai-org/meok-stripe-acp-checkout-mcp

MEOK Stripe ACP Checkout MCP — ChatGPT shopping bridge. Issues + verifies + signs Stripe Agentic
Google Ads

io.github.mharnett/google-ads

Google Ads MCP with MCC support: 35 tools for campaigns, keywords, reporting, GAQL.
Stripe Billing Mcp

csoai-org/stripe-billing-mcp

stripe-billing-mcp MCP server by MEOK AI Labs
Google Ads Mcp

co.pipeboard/google-ads-mcp

Google Ads automation with AI: analyze performance, manage campaigns, optimize bids.