A powerful and efficient Blockchain address risk scoring API MCP Server, leveraging the BICScan API to provide comprehensive risk assessments and asset information for blockchain addresses, domains, and decentralized applications (dApps). - Risk Scoring: Obtain risk scores for various blockchain entities, including crypto addresses, domain names, and decentralized application URLs, with scores ran
Add this skill
npx mdskills install ahnlabio/bicscan-mcpWell-documented blockchain risk assessment MCP server with clear setup for multiple deployment methods
1# BICScan MCP Server2A powerful and efficient Blockchain address risk scoring API MCP Server, leveraging the BICScan API to provide comprehensive risk assessments and asset information for blockchain addresses, domains, and decentralized applications (dApps).34## Key Features5- **Risk Scoring**: Obtain risk scores for various blockchain entities, including crypto addresses, domain names, and decentralized application URLs, with scores ranging from 0 to 100, where 100 indicates high risk.6- **Asset Information**: Retrieve detailed asset holdings for specified crypto addresses, including cryptocurrencies and tokens, with support for multiple blockchain networks.7- **Real-time Scanning**: Utilize the BICScan API to perform real-time scans and receive up-to-date information on potential risks and asset holdings.8- **Secure and Reliable**: Built with robust error handling and logging to ensure secure and reliable operations.910## Example Output1112## How to use.1314You con either use Python with `uv` or `docker` depending on your preference.1516Depending on your environment, you can choose to use either `uv`, `docker`, or `uvx`.1718### 1. Running with `uv`1920#### 1-1. Requirements211. Python 3.10 or higher222. uv 0.6.x233. git2425#### 1.2. Clone the repository26```sh27git clone https://github.com/ahnlabio/bicscan-mcp28```2930#### 1.3. Config `claude_desktop_config.json`3132Append following to `claude_desktop_config.json`.3334Make sure to replace:35 - `YOUR_BICSCAN_REPO_DIR_HERE`: to something like `C:\\Users\\ABC\\repo\\bicscan-mcp` or `/home/abc/repo/bicscan-mcp` similarly.36 - `YOUR_BICSCAN_API_KEY_HERE`: to free API key can be obtained from https://bicscan.io (details below)3738```json39{40 "mcpServers": {41 ... some other mcp servers ...,42 "bicscan": {43 "command": "uv",44 "args": [45 "--directory",46 "YOUR_BICSCAN_REPO_DIR_HERE",47 "run",48 "bicscan-mcp"49 ],50 "env": {51 "BICSCAN_API_KEY": "YOUR_BICSCAN_API_KEY_HERE"52 }53 }54 }55}56```575859### 2. Running with `Docker`6061#### 2.1. Requirements621. Docker environment636465#### 2.2. Clone the repository66```sh67git clone https://github.com/ahnlabio/bicscan-mcp68```6970#### 2.3. Build Docker image.7172Just run `make` in the repository directory to build docker image.737475#### 2.4. Config76Append following to `claude_desktop_config.json`7778Make sure to replace:79 - `YOUR_BICSCAN_API_KEY_HERE` to API key obtained from https://bicscan.io (details below)8081```json82{83 "mcpServers": {84 ... some other mcp servers ...,85 "bicscan": {86 "command": "docker",87 "args": [88 "run",89 "--rm",90 "--interactive",91 "--env", "BICSCAN_API_KEY=YOUR_BICSCAN_API_KEY_HERE",92 "bicscan-mcp"93 ]94 }95 }96}97```9899### 3. Running with `uvx`100101#### 3.1. Requirements1021. Python 3.10 or higher1032. uv 0.6.x1043. git105106#### 3.2. Config `claude_desktop_config.json`107108Append following to `claude_desktop_config.json`.109110Make sure to replace:111 - `YOUR_BICSCAN_API_KEY_HERE`: to free API key can be obtained from https://bicscan.io (details below)112113```json114{115 "mcpServers": {116 ... some other mcp servers ...,117 "bicscan": {118 "command": "uvx",119 "args": [120 "--from",121 "git+https://github.com/ahnlabio/bicscan-mcp",122 "bicscan-mcp"123 ],124 "env": {125 "BICSCAN_API_KEY": "YOUR_BICSCAN_API_KEY_HERE"126 }127 }128 }129}130```131132133134## How to obtain Free BICScan API Key?1351361. Visit `https://bicscan.io` and register.1372. Go to profile and create "Create App"1383. Enter name and description on your choice.1394. Replace `YOUR_BICSCAN_API_KEY_HERE` part from above config to your newly obtained key.1405. restart the Claude Desktop.
Full transparency — inspect the skill content before installing.