╭━╮ │T│ │D│ ╰━╯
Token Deployment Service
SERVER URL
http://localhost:3000/api/mcp-server/token-deployerCONNECTION JSON
{
"mcpServers": {
"token-deployer": {
"command": "npx",
"args": [
"mcp-remote@latest",
"http://localhost:3000/api/mcp-server/token-deployer"
]
}
}
}Learn more about supported MCP clients
MCP HOST CONNECTIONS
Connect this MCP server directly to your AI assistant tools by using the JSON config above. Click on a logo to see a demo video.
╔═══╗ ║ ▸ ║ ║ │ ║ ╚═══╝
┌───┐ │ C │ │ L │ └───┘
≋≋≋≋ ~≋~≋ ≋~≋~ ~~~~
DESCRIPTION
Streamlined token deployment and management service. Deploy ERC-20, SPL, and other token standards, manage supply, airdrops, and token utilities with built-in security best practices.
AVAILABLE TOOLS
deployToken
Deploy new token contract
mintTokens
Mint additional tokens
executeAirdrop
Distribute tokens to multiple addresses
freezeAccount
Freeze/unfreeze token accounts
CODE EXAMPLES
// Token Deployer Client
import { Client } from '@modelcontextprotocol/sdk';
const client = new Client();
await client.connect('https://token-deployer.x402.app/sse');
const token = await client.callTool({
name: 'deployToken',
arguments: {
name: 'MyToken',
symbol: 'MTK',
decimals: 9,
supply: 1000000
}
});
console.log('Token Address:', token.address);Official MCP SDK Documentation:
https://github.com/modelcontextprotocol/modelcontextprotocol
Installation:
npm install @modelcontextprotocol/sdk
Authentication:
- For MCP Hosts (Cursor, Windsurf, Claude Desktop), saving the JSON config to your tool will automatically trigger the browser OAuth flow
- For programmatic access, obtain the OAuth token by running "npx mcp-remote <url>" in the terminal and follow the instructions