Back to MCP Directory
Connections & Capabilities
Connects To
GitHub
Capabilities
read
Quickstart
Config
{
"mcpServers": {
"coin-mcp": {
"command": "deno",
"args": [
"run",
"--allow-net",
"--allow-read",
"--allow-env",
"https://deno.land/x/coin_mcp_server/main.ts"
]
}
}
}Exposed MCP Tools (3)
safe
getTokenPriceFetches the latest price of a specified cryptocurrency token in USDT.
Read-only operation; retrieves data without modifying any system state.
safe
getAnnoucementsRetrieves announcements related to cryptocurrencies.
Read-only operation; retrieves data without modifying any system state.
safe
getCoinInfoRetrieves detailed information about a specified cryptocurrency token.
Read-only operation; retrieves data without modifying any system state.
Safety Assessment
This server is relatively safe for fetching cryptocurrency prices due to its read-only nature and input validation. However, it's crucial to ensure the underlying Deno environment is securely configured and to monitor the reliability of the external Bitget API.
- Read-only access to cryptocurrency prices and announcements.
- Uses Zod for input validation, reducing injection risks.
- No API keys required for public endpoints.
- Operates within the Deno environment, which has built-in security features.
- Relies on the security of the Bitget API.
- Potential for network vulnerabilities if Deno is not configured securely.
- Exposure to external data sources introduces a risk of data integrity issues.
- Lack of authentication mechanisms could allow unrestricted access within the local network.