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

vk-mcp-server

v0.1.2

Published

Model Context Protocol server for VK (VKontakte) social network API

Readme

VK MCP Server

Model Context Protocol (MCP) server for VK (VKontakte) social network API. Enables AI assistants like Claude to interact with VK through a standardized interface.

Features

  • 📖 Read Operations: Get users, wall posts, groups, friends, newsfeed, photos
  • ✍️ Write Operations: Create posts, add comments
  • 📊 Analytics: Get community statistics
  • 🔒 Secure: Token-based authentication via environment variable

Installation

npm install -g vk-mcp-server

Or run directly with npx:

npx vk-mcp-server

Getting VK Access Token

  1. Go to VK Developers and create a Standalone app
  2. Get your app ID
  3. Open this URL (replace YOUR_APP_ID):
    https://oauth.vk.com/authorize?client_id=YOUR_APP_ID&display=page&redirect_uri=https://oauth.vk.com/blank.html&scope=friends,wall,groups,photos,stats,offline&response_type=token&v=5.199
  4. Authorize and copy the access_token from the URL

Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "vk": {
      "command": "npx",
      "args": ["vk-mcp-server"],
      "env": {
        "VK_ACCESS_TOKEN": "your_access_token_here"
      }
    }
  }
}

Claude Code

Add to your project's settings.json:

{
  "mcpServers": {
    "vk": {
      "command": "npx",
      "args": ["vk-mcp-server"],
      "env": {
        "VK_ACCESS_TOKEN": "your_access_token_here"
      }
    }
  }
}

Available Tools

Users

| Tool | Description | |------|-------------| | vk_users_get | Get user profiles by IDs or screen names |

Wall

| Tool | Description | |------|-------------| | vk_wall_get | Get posts from user/community wall | | vk_wall_post | Publish a new post | | vk_wall_create_comment | Add comment to a post |

Groups

| Tool | Description | |------|-------------| | vk_groups_get | Get user's communities list | | vk_groups_get_by_id | Get community info by ID |

Friends

| Tool | Description | |------|-------------| | vk_friends_get | Get user's friends list |

Newsfeed

| Tool | Description | |------|-------------| | vk_newsfeed_get | Get user's newsfeed |

Stats

| Tool | Description | |------|-------------| | vk_stats_get | Get community statistics (admin only) |

Photos

| Tool | Description | |------|-------------| | vk_photos_get | Get photos from albums |

Usage Examples

Once configured, you can ask Claude:

  • "Get information about Pavel Durov's VK profile"
  • "Show me the latest 5 posts from the VK official community"
  • "Post 'Hello World!' on my wall"
  • "Get the list of communities I'm a member of"
  • "Show my newsfeed"

Example Prompts

User: What's on Pavel Durov's wall?

Claude: I'll check Pavel Durov's VK wall for recent posts.
[Uses vk_wall_get with domain="durov"]

Here are the latest posts from Pavel Durov's wall:
1. [Post content...]
2. [Post content...]
...

API Reference

This server wraps VK API v5.199. For detailed parameter documentation, see:

Security Notes

  • Never share your access token
  • The offline scope provides a non-expiring token
  • Review permissions before authorizing
  • For production, consider using a service token

License

MIT

Contributing

Pull requests welcome! Please read the contributing guidelines first.


Made with ❤️ for the MCP ecosystem