Basic MCP server for Dexscreener API based on their documentation (as of April 4th 2025): https://docs.dexscreener.com/api/reference Install all the dependencies If you are using Claude Desktop, after pulling the code open the config file claudedesktopconfig.json in VSCode: - on MacOS: - on Windows: - more info: https://modelcontextprotocol.io/quickstart/server In claudedesktopconfig.json put dexs
Add this skill
npx mdskills install janswist/mcp-dexscreenerProvides setup instructions but lacks critical details about API capabilities and tool descriptions
1# Dexscreener MCP server23Basic MCP server for Dexscreener API based on their documentation (as of April 4th 2025): https://docs.dexscreener.com/api/reference45## Project setup67Install all the dependencies8```9npm run install10```1112If you are using Claude Desktop, after pulling the code open the config file `claude_desktop_config.json` in VSCode:13- on MacOS:1415 ```code ~/Library/Application\ Support/Claude/claude_desktop_config.json```1617- on Windows:1819 ```code $env:AppData\Claude\claude_desktop_config.json```20- more info: https://modelcontextprotocol.io/quickstart/server2122In `claude_desktop_config.json` put `dexscreener` object:23```json24{25 "mcpServers": {26 "dexscreener": {27 "command": "node",28 "args": [29 "/ABSOLUTE/PATH/TO/PARENT/FOLDER/index.js"30 ]31 }32 }33}3435```3637## Running the app3839You can use [Inspector](https://modelcontextprotocol.io/docs/tools/inspector) to test the MCP server without using Claude Desktop - both for SDTIO version (default) and SSE version `index-sse.js` (server-sent events - can be hosted on remote server).
Full transparency — inspect the skill content before installing.