Skip to content

CryptoAPIs-io/cryptoapis-mcp-shared

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@cryptoapis-io/mcp-shared

Shared HTTP client, error types, blockchain constants, and schemas used by all Crypto APIs MCP servers.

API Version: Compatible with Crypto APIs version 2024-12-12

What's Inside

  • HTTP clientCryptoApisHttpClient for making authenticated REST API calls
  • Error typesCryptoApisError with code, status, and details
  • Blockchain constantsBLOCKCHAIN_NETWORKS, EVM_BLOCKCHAINS, UTXO_BLOCKCHAINS, chain IDs, network mappings
  • Zod schemas — Blockchain/network schemas, cursor/offset pagination, request metadata
  • CreditsformatCreditsForDescription() and credit types for tool cost metadata
  • Confirmation — Token-based confirmation flow for dangerous actions (sync, delete, activate)
  • ConfigloadSharedConfig() with support for per-request API keys via runWithApiKey()
  • System info tool — Built-in system_info tool providing blockchain, credits, and API documentation

Installation

npm install @cryptoapis-io/mcp-shared

Usage

This package is primarily used as a dependency by other @cryptoapis-io/mcp-* packages. You typically don't use it directly unless building a custom MCP server for Crypto APIs.

import {
    CryptoApisHttpClient,
    loadSharedConfig,
    EVM_BLOCKCHAINS,
    UTXO_BLOCKCHAINS,
    EvmBlockchainSchema,
    CursorPaginationSchema,
    formatCreditsForDescription,
} from "@cryptoapis-io/mcp-shared";

const config = loadSharedConfig();
const client = new CryptoApisHttpClient(config);

const result = await client.request("GET", "/blockchain-data/ethereum/mainnet/addresses/{address}/balance");

License

MIT

About

Shared HTTP client, error types, blockchain constants, and schemas for Crypto APIs MCP servers

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors