We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Stonewater-Digital/snowdrop-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""
mica_asset_classification — Classifies crypto-assets under EU MiCA Regulation (EU) 2023/1114 as ART (Asset-Referenced Token), EMT (E-Money Token), or Utility Token
PREMIUM SKILL — full implementation available to subscribers.
Subscribe: https://snowdrop.ai (launching soon)
AUTO-GENERATED STUB — do not edit manually.
Source of truth: snowdrop-core/skills/premium/compliance/mica_asset_classification.py
Regenerate: python scripts/build_public_stubs.py
"""
from __future__ import annotations # defers annotation evaluation (PEP 563)
from typing import Any, Optional, Union # FastMCP resolves annotations via get_type_hints()
from skills._paywall import paywall_response
TOOL_META = {
"name": "mica_asset_classification",
"tier": "premium",
"description": "Classifies crypto-assets under EU MiCA Regulation (EU) 2023/1114 as ART (Asset-Referenced Token), EMT (E-Money Token), or Utility Token. Flags significant status based on market cap and daily volume thresholds. (Premium — subscribe at https://snowdrop.ai)",
}
def mica_asset_classification(token_data: dict[str, Any]) -> dict[str, Any]:
"""Premium skill — subscribe to access full implementation."""
return paywall_response("mica_asset_classification")