NaniDAO agentek

NaniDAO agentek avatar

by NaniDAO

An extensible TypeScript toolkit that simplifies complex EVM blockchain interactions into composable, intent-based tools. Provides a unified, type-safe interface for both on-chain actions and off-chain data services, enabling developers to programmatically execute any blockchain operation across multiple EVM networks.

What is NaniDAO agentek

agentek

agentek-logo-1

An extensible TypeScript toolkit that simplifies complex EVM blockchain interactions into composable, intent-based tools. Provides a unified, type-safe interface for both on-chain actions and off-chain data services, enabling developers to programmatically execute any blockchain operation across multiple EVM networks.

Interested in contributing? Check out our CONTRIBUTING.md guide!

Packages

The Agentek toolkit is structured as a monorepo with multiple publishable packages:

  • @agentek/tools - The main package containing all tools
  • @agentek/ai-sdk - AI SDK integration for Vercel AI SDK
  • @agentek/mcp-server - Model Context Protocol server

Requirements

  • Node.js >= 18.0.0
  • npm, yarn, or pnpm

Installation

You can install the entire toolkit:

npm install @agentek/tools

AI SDK:

npm install @agentek/ai-sdk

Usage

Using the full toolkit

import { createAgentekClient, allTools } from '@agentek/tools';
import { http } from 'viem';
import { mainnet } from 'viem/chains';

const client = createAgentekClient({
  accountOrAddress: '0x...',
  chains: [mainnet],
  transports: [http()],
  tools: allTools({})
});

// Execute a tool
const result = await client.execute('getERC20BalanceTool', {
  address: '0x...',
  tokenAddress: '0x...'
});

Using with AI SDK

import { createAgentekClient, allTools } from '@agentek/tools';
import { AgentekToolkit } from '@agentek/ai-sdk';
import { http } from 'viem';
import { mainnet } from 'viem/chains';

const toolkit = new AgentekToolkit({
  accountOrAddress: '0x...',
  chains: [mainnet],
  transports: [http()],
  tools: allTools({})
});

// Get tools for Vercel AI SDK
const aiTools = toolkit.getTools();

Using the MCP Server

The MCP (Model Context Protocol) server allows you to expose Agentek tools to LLMs via the Model Context Protocol. For more information, see the MCP Server README

Tools (114 total)

Available Tools

  1. resolveENS
  2. lookupENS
  3. getAllowance
  4. getBalanceOf
  5. getTotalSupply
  6. getDecimals
  7. getName
  8. getSymbol
  9. getTokenMetadata
  10. intentApprove
  11. getAcrossFeeQuote
  12. intentDepositAcross
  13. intentTransfer
  14. intentTransferFrom
  15. getLatestTokens
  16. getBalance
  17. getCode
  18. getTransactionCount
  19. getBlock
  20. getBlockNumber
  21. getGasPrice
  22. estimateGas
  23. getFeeHistory
  24. getTransaction
  25. getTransactionReceipt
  26. getUniV3Pool
  27. getUserPositions
  28. getPoolFeeData
  29. getPositionDetails
  30. intentMintPosition
  31. intentIncreaseLiquidity
  32. intentDecreaseLiquidity
  33. intentCollectFees
  34. intentTransferPosition
  35. depositWETH
  36. withdrawWETH
  37. getNaniProposals
  38. intentStakeNani
  39. intentUnstakeNani
  40. intentProposeNani
  41. intentVoteNaniProposal
  42. getNativeCoinHolders
  43. getAddressInfo
  44. getAddressCounters
  45. getAddressTransactions
  46. getAddressTokenTransfers
  47. getAddressInternalTransactions
  48. getAddressLogs
  49. getAddressBlocksValidated
  50. getAddressTokenBalances
  51. getAddressTokens
  52. getAddressCoinBalanceHistory
  53. getAddressCoinBalanceHistoryByDay
  54. getAddressWithdrawals
  55. getAddressNFTs
  56. getAddressNFTCollections
  57. getBlockInfo
  58. getBlockTransactions
  59. getBlockWithdrawals
  60. getStats
  61. getTransactionsChart
  62. getTransactionInfo
  63. getTransactionTokenTransfers
  64. getTransactionInternalTransactions
  65. getTransactionLogs
  66. getTransactionRawTrace
  67. getTransactionStateChanges
  68. getTransactionSummary
  69. getSmartContracts
  70. getSmartContract
  71. getTokenInfo
  72. getTokenHolders
  73. getTokenTransfers
  74. getBlockscoutSearch
  75. getAaveUserData
  76. getAaveReserveData
  77. intentAaveDeposit
  78. intentAaveWithdraw
  79. intentAaveBorrow
  80. intentAaveRepay
  81. checkMaliciousAddress
  82. checkMaliciousWebsite
  83. scrapeWebContent
  84. getFearAndGreedIndex
  85. getSlowStatus
  86. predictTransferId
  87. canUnlockSlow
  88. getCanReverseSlowTransfer
  89. getSlowGuardianInfo
  90. getSlowTransferApprovalRequired
  91. intentDepositToSlow
  92. intentSetSlowGuardian
  93. intentWithdrawFromSlow
  94. intentApproveSlowTransfer
  95. intentUnlockSlow
  96. intentReverseSlowTransfer
  97. getNFTMetadata
  98. getCryptoPrice
  99. estimateGasCost
  100. getTokenChart
  101. getYieldTool
  102. compareYieldTool
  103. getYieldHistoryTool
  104. compareYieldHistoryTool
  105. think
  106. askPerplexitySearch
  107. intent0xSwap
  108. tallyProposals
  109. tallyChains
  110. tallyUserDaos
  111. intentGovernorVote
  112. intentGovernorVoteWithReason
  113. getLatestCoindeskNewsTool
  114. getMarketEvents

Leave a Comment

Frequently Asked Questions

What is MCP?

MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.

What are MCP Servers?

MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.

How do MCP Servers work?

MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.

Are MCP Servers secure?

Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.

Related MCP Servers

chrisdoc hevy mcp avatar

chrisdoc hevy mcp

mcp
sylphlab pdf reader mcp avatar

sylphlab pdf reader mcp

An MCP server built with Node.js/TypeScript that allows AI agents to securely read PDF files (local or URL) and extract text, metadata, or page counts. Uses pdf-parse.

pdf-parsetypescriptnodejs
aashari mcp server atlassian bitbucket avatar

aashari mcp server atlassian bitbucket

Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.

atlassianrepositorymcp
aashari mcp server atlassian confluence avatar

aashari mcp server atlassian confluence

Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP interface.

atlassianmcpconfluence
prisma prisma avatar

prisma prisma

Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB

cockroachdbgomcp
Zzzccs123 mcp sentry avatar

Zzzccs123 mcp sentry

mcp sentry for typescript sdk

mcptypescript
zhuzhoulin dify mcp server avatar

zhuzhoulin dify mcp server

mcp
zhongmingyuan mcp my mac avatar

zhongmingyuan mcp my mac

mcp
zhixiaoqiang desktop image manager mcp avatar

zhixiaoqiang desktop image manager mcp

MCP 服务器,用于管理桌面图片、查看详情、压缩、移动等(完全让Trae实现)

mcp
zhixiaoqiang antd components mcp avatar

zhixiaoqiang antd components mcp

An MCP service for Ant Design components query | 一个减少 Ant Design 组件代码生成幻觉的 MCP 服务,包含系统提示词、组件文档、API 文档、代码示例和更新日志查询

designantdapi

Submit Your MCP Server

Share your MCP server with the community

Submit Now