Chronos is a Model Context Protocol (MCP) server that bridges AI applications with the Stellar blockchain network, enabling seamless onchain interactions.
Seamlessly connect AI applications like Claude Desktop and Cursor to the Stellar blockchain.
Execute blockchain transactions, query account data, and manage assets directly from AI interfaces.
Built on the Model Context Protocol (MCP) standard with robust security measures for safe blockchain interactions.
Simple API design with comprehensive documentation for easy integration into existing AI applications.
AI applications connect to Chronos MCP server using the standard MCP protocol.
The AI sends requests to perform Stellar network operations through Chronos.
Chronos translates requests into Stellar network API calls and executes them securely.
Results from the Stellar network are formatted and returned to the AI application.
Allow AI assistants to check balances, manage assets, and execute transactions on behalf of users.
Enable AI to implement and execute trading strategies on the Stellar decentralized exchange.
Facilitate AI interaction with Stellar smart contracts and Soroban-based applications.
Empower AI to analyze on-chain data and generate insights from Stellar network activity.
npm install chronos-mcp
const Chronos = require('chronos-mcp');
// Initialize Chronos with your Stellar account
const chronos = new Chronos({
network: 'testnet', // or 'public' for mainnet
secretKey: 'YOUR_STELLAR_SECRET_KEY'
});
// Example: Get account information
async function getAccountInfo(publicKey) {
try {
const account = await chronos.stellar.getAccount(publicKey);
console.log('Account Info:', account);
return account;
} catch (error) {
console.error('Error fetching account:', error);
}
}