DeepCore WorkFlow
Model Hub
CryptoAnalyst
Analyze on-chain and off-chain data multi-dimensionally to deliver precise project evaluations for traders.
FUNCTIONS
CryptoTrader
CryptoTrader streamlines Web3 token trading, offering token buy, sell, buy limit orders, sell limit orders, stop-limit orders, and limit order queries on the Solana chain.
FUNCTIONS
Twitter Knowledge Graph
OfficialBy identifying and linking tweets, users, and hashtags related to WEB3 KOLs, it uncovers hidden relationship networks.
Data process
Agent Categories
Explore our diverse collection of specialized AI agents designed to meet your specific needs
Using DeepCore's advanced features
CASE: This is a case study, if you can code, you can generate a more advanced AI agent based on the platform 0 code, here is the case study.
# Using Token authentication
import requests
# Your API token from the platform dashboard or API settings
token = "tk_095fa33201c94b108aee"
# Use streaming response
response = requests.post(
"https://deepcore.top/api/open/agents/{"agentId}/dialogue",
headers={
"X-API-Token": token
},
json={
"message": "Hello, Agent!",
"conversation_id": "optional-conversation-id",
"init_flag": False
},
stream=True # Enable streaming
)
# Process streaming response
for chunk in response.iter_lines():
if chunk:
# Filter out empty lines
data = chunk.decode('utf-8')
if data.startswith('data: '):
# Remove 'data: ' prefix
content = data[6:]
print(content)
Deep Research Agent, Seriously.
Deep Research is a specialized project research assistant designed for the crypto that generates comprehensive reports on any topic following a workflow similar to OpenAI and Gemini Deep Research. it allows you to customize the models, prompts, report structure, search API, and research depth.
Model Context Protocol
DeepCore fully integrates the MCP protocol. Any standard MCP Server can be converted into a Tool for Agent invocation after integration. Agents can also be published as MCP Servers, allowing external clients such as Cursor and Claude to invoke them. Additionally, DeepCore builds its own MCP Store to enable the registration, discovery, and invocation of all MCP Servers in the crypto domain.