The @atxp/common package provides shared utilities, types, and interfaces that are used across all ATXP SDK packages. This package contains the foundational building blocks for authentication, payment processing, and MCP integration.
This package is typically installed automatically as a dependency when you install other ATXP packages like @atxp/client or @atxp/express. You only need to install it directly if you’re building custom integrations or extending the ATXP SDK.
The ATXP connection string in the format: https://accounts.atxp.ai?connection_token=<token>
Example usage
import { Account } from '@atxp/common'// Get connection string from environment variablesconst connectionString = process.env.ATXP_CONNECTION_STRINGconst account = new Account(connectionString)