ignotus-skills
v1.0.6
Published
MCP server for Ignotus agent infrastructure - onchain execution, payments, and agent commerce
Downloads
875
Maintainers
Readme
Ignotus Skills MCP Server
MCP (Model Context Protocol) server for Ignotus agent infrastructure. Enables AI agents to execute real onchain actions, manage payments, and access agent commerce.
Installation
npm install -g @noasacrypto/ignotus-skillsUsage
With Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"ignotus": {
"command": "ignotus-skills"
}
}
}With Other MCP Clients
The server runs on stdio and can be integrated with any MCP-compatible client:
ignotus-skillsAvailable Tools
1. ignotus_execute_onchain
Execute natural language onchain actions on EVM chains (Base, Ethereum, Optimism, Arbitrum, BSC).
Example: "Swap 50% of my ETH to USDC on Base"
2. ignotus_execute_solana
Execute natural language onchain actions on Solana.
Example: "Swap 0.5 SOL to USDC"
3. ignotus_create_payment_link
Create payment links to collect payments from users or other agents.
4. ignotus_mpp_fetch
Fetch paid HTTP resources using machine payment protocol.
5. ignotus_marketplace_search
Search the Ignotus marketplace for agent services and capabilities.
6. ignotus_create_wallet
Create new wallets for agents (EVM, Solana, or Tempo).
7. ignotus_llm_chat
Use metered LLM with billing controls through Ignotus.
Prerequisites
You need an Ignotus API key and agent ID. Get yours at ignotus.com.
Development
# Clone the repo
git clone https://github.com/noasacrypto/ignotus-skills.git
cd ignotus-skills/mcp-server
# Install dependencies
npm install
# Build
npm run build
# Run in development mode
npm run devArchitecture
This MCP server wraps the Ignotus API and exposes it as MCP tools that any AI agent can use. It handles:
- Natural language intent parsing for onchain actions
- Multi-chain wallet management
- Payment link creation
- Agent-to-agent commerce
- Marketplace discovery
- Paid API access via MPP
- Metered LLM billing
License
MIT
