npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iqai/mcp-iqwiki

v0.0.5

Published

IQ Wiki MCP server for accessing IQ.wiki data

Downloads

427

Readme

📚 IQ Wiki MCP Server

npm version License: MIT

📖 Overview

The IQ Wiki MCP Server enables AI agents to interact with IQ.wiki, a blockchain-powered encyclopedia for crypto and DeFi knowledge. This server provides comprehensive access to wiki data, user contributions, and activity tracking.

By implementing the Model Context Protocol (MCP), this server allows Large Language Models (LLMs) to discover wiki articles, search for knowledge, and track user wiki activities directly through their context window, bridging the gap between AI and decentralized knowledge.

✨ Features

  • Wiki Access: Retrieve detailed information about any wiki article on IQ.wiki by ID.
  • User Contributions: Track wikis created or edited by specific users based on their Ethereum address.
  • Activity Tracking: Monitor detailed wiki activities (creations and edits) with optional time filtering.
  • Search: Search for wiki articles using natural language queries.

📦 Installation

🚀 Using npx (Recommended)

To use this server without installing it globally:

npx @iqai/mcp-iqwiki

📦 Using pnpm dlx

pnpm dlx @iqai/mcp-iqwiki

🔧 Build from Source

git clone https://github.com/IQAIcom/mcp-iqwiki.git
cd mcp-iqwiki
pnpm install
pnpm run build

⚡ Running with an MCP Client

Add the following configuration to your MCP client settings (e.g., claude_desktop_config.json).

📋 Minimal Configuration

{
  "mcpServers": {
    "iq-wiki": {
      "command": "npx",
      "args": ["-y", "@iqai/mcp-iqwiki"]
    }
  }
}

⚙️ Advanced Configuration (Local Build)

{
  "mcpServers": {
    "iq-wiki": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-iqwiki/dist/index.js"]
    }
  }
}

💡 Usage Examples

🔍 Wiki Discovery

  • "Get the wiki article for Bitcoin"
  • "Search for wikis about DeFi protocols"
  • "Find information about Ethereum"

👤 User Contributions

  • "What wikis has 0x8AF7a19a26d8FBC48dEfB35AEfb15Ec8c407f889 created?"
  • "Show wikis edited by this user in the last 24 hours"
  • "Get all wiki activities for this Ethereum address"

📊 Activity Tracking

  • "List recent wiki creations by user 0x..."
  • "Show wiki edits in the last hour"
  • "Track user wiki contributions over time"

🛠️ MCP Tools

GET_USER_CREATED_WIKIS

Get wikis created by a specific user on IQ.wiki

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | id | string | ✅ | The Ethereum address of the user | | timeFrameSeconds | number | | Optional time frame in seconds to filter results |

GET_USER_EDITED_WIKIS

Get wikis edited by a specific user on IQ.wiki

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | id | string | ✅ | The Ethereum address of the user | | timeFrameSeconds | number | | Optional time frame in seconds to filter results |

GET_USER_WIKI_ACTIVITIES

Get wiki activities (creations or edits) for a specific user on IQ.wiki

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | id | string | ✅ | The Ethereum address of the user | | activityType | string | | Type of activity: CREATED or UPDATED | | timeFrameSeconds | number | | Optional time frame in seconds to filter results |

GET_WIKI

Get details about a specific wiki from IQ.wiki by ID

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | id | string | ✅ | The ID of the wiki to retrieve |

SEARCH_WIKI

Search for a wiki from IQ.wiki by query

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | query | string | ✅ | The query to search for |

👨‍💻 Development

🏗️ Build Project

pnpm run build

👁️ Development Mode (Watch)

pnpm run watch

✅ Linting & Formatting

pnpm run lint
pnpm run format

🧪 Testing

pnpm test

📁 Project Structure

  • src/tools/: Individual tool definitions
  • src/services/: API client and business logic
  • src/lib/: Shared utilities
  • src/index.ts: Server entry point

📚 Resources

⚠️ Disclaimer

This tool interacts with IQ.wiki blockchain data. Users should verify all information independently. Wiki content is community-contributed and may change over time.

📄 License

MIT