
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
chronos-mcp
Advanced tools
Chronos is a Model Context Protocol (MCP) server tailored for the Stellar blockchain and designed specifically for integration with Claude Desktop and similar AI applications. Chronos empowers your AI assistant with on-chain tools enabling streamlined interactions with the Stellar network.
Chronos MCP provides the following capabilities:
Chronos is built to be extensible and operates as a standard Node.js package, allowing it to be easily deployed, installed, and integrated—similar to other MCP servers such as base-mcp.
Install Chronos globally:
npm install -g chronos-mcp
Or use it directly with npx:
npx chronos-mcp@latest
Clone the repository:
git clone https://github.com/yourusername/chronos-mcp.git
cd chronos-mcp
Install dependencies:
npm install
Build the project:
npm run build
(Optional) Link globally for easier access:
npm link
Create a configuration file or set environment variables as needed. For example, to use Chronos with Claude Desktop, update your Claude Desktop configuration file located at:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
Sample configuration for Claude Desktop:
{
"mcpServers": {
"stellar": {
"command": "npx",
"args": ["chronos-mcp@latest"],
"env": {
"STELLAR_NETWORK": "mainnet"
},
"disabled": false,
"autoApprove": []
}
}
}
Chronos MCP exposes the following tools via its MCP interface:
Connects to a Stellar wallet using the secret key.
Example Command:
"Connect my wallet using secret key ______"
Lists all tokens and assets in the specified Stellar wallet.
Example Command:
"List my wallet tokens"
Retrieves the balance for XLM and any other assets.
Example Command:
"What's my current XLM balance?"
Transfers funds from your wallet to another Stellar wallet.
Parameters:
secretKey
: Your wallet secret key.destinationAddress
: The recipient's wallet address.amount
: The amount to transfer.asset
(optional): Asset to transfer (defaults to XLM).Example Command:
"Transfer 0.5 XLM to [destination wallet address]"
To test Chronos MCP locally:
npm test
This will run the project’s test suite and verify that your server is working as expected.
Chronos MCP is designed to function as a standard Node.js package and can be published to npm. Once published (e.g. via npm publish
), Chronos can be installed globally or used via npx, just like any other MCP server.
For production deployment, consider wrapping Chronos in a system service (using systemd, launchd, etc.) for automatic restarts and monitoring.
Chronos is built with extensibility in mind. To add new tools:
src/tools
folder.index.ts
, schemas.ts
, and handlers.ts
).src/tools/index.ts
.This project is licensed under the MIT License.
Contributions are welcome! Please consult the CONTRIBUTING.md for guidelines on reporting issues, submitting pull requests, and other contribution instructions.
────────────────────────────── This README is tailored specifically for Chronos MCP and outlines its deployment as a Node.js package, integration with Claude Desktop, and a comprehensive set of features to interact with the Stellar blockchain.
FAQs
Chronos – A Stellar MCP server
We found that chronos-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.