Full VK MCP
Model Context Protocol (MCP) server for VKontakte (VK) — the largest social network in Russia and CIS countries.
README
VK MCP Server
Model Context Protocol (MCP) server for VKontakte (VK) — the largest social network in Russia and CIS countries.
This server allows AI assistants (Claude, Cursor, Windsurf, VS Code, etc.) to interact with VK through a standardized MCP interface.
Features
- 180+ VK API tools auto-generated from the official schema (full set available with
VK_MCP_MODE=all; safe defaults expose a smaller subset) — users, wall, groups, friends, photos, videos, messages, market, stats, stories, polls, and more - Auto-generated from VK API schema — always up-to-date with the official API
- Read/Write/Money mode filtering — restrict AI to read-only, allow non-financial writes, or enable financially sensitive methods
- Section filtering — include or exclude specific API sections (e.g., disable
ads,secure) .envsupport — load token from environment file for local development- VK upload API helpers — exposes upload-server and save methods for media workflows
- ESM-based — modern Node.js module system
- Stdio transport — standard MCP transport, no network exposure
Prerequisites
- Node.js ≥ 18
- VK Access Token with required permissions
Installation
# Clone the repository
git clone https://github.com/ssm82/full-vk-mcp.git
cd full-vk-mcp
# Install dependencies
npm install
The VK API schema is downloaded automatically on the first run. No manual steps needed.
Configuration
1. VK Access Token
Create a .env file in the project root:
VK_ACCESS_TOKEN=your_vk_token_here
Or get a token from:
- vkhost.github.io — quick token generator
- VK Dev — official developer portal
Required permissions depend on your use case:
wall— posting and reading wallphotos— uploading photosgroups— community managementfriends,messages,market,stats— as needed
Security: Never commit your token to git. The
.envfile is already in.gitignore.
2. Choose a Profile (Recommended)
Instead of manually configuring sections and methods, use a built-in profile via VK_MCP_PROFILE:
VK_MCP_PROFILE=minimal node src/index.js
| Profile | Mode | Description | Warning |
|---|---|---|---|
minimal |
read | Essential read methods | Safe |
social |
read | Users, friends + extras | Safe |
content_read |
read | ~25 content viewing methods | Safe |
content_publish |
all | ~20 content creation methods | Can publish |
community_manager |
all | Wall, board, groups management | Can modify communities |
messenger |
all | Messages + user info | Requires messages scope |
analytics |
read | Stats, wall, groups insights | Safe |
ads |
money | Ads API + helper methods | Can spend money |
market |
money | VK Market + upload helpers | Can modify shop |
commerce |
money | Market, orders, store, gifts, donut | Financially sensitive |
search |
read | ~10 search methods | Safe |
full_read |
read | All read methods except ads/secure | Safe |
full |
all | All VK API methods | Development only |
Profiles can be extended with environment variables:
VK_MCP_PROFILE=social VK_MCP_INCLUDE_SECTIONS=wall node src/index.js
Env extends profile: list variables (sections, methods, excludes) are merged with the profile; scalar
modeis overridden by env.
3. MCP Client Setup
VS Code (with Copilot / Claude / etc.)
Create .vscode/mcp.json:
{
"servers": {
"vk": {
"type": "stdio",
"command": "node",
"args": ["src/index.js"],
"env": {
"VK_ACCESS_TOKEN": "${input:vk-token}",
"VK_MCP_PROFILE": "minimal"
}
}
},
"inputs": [
{
"type": "promptString",
"id": "vk-token",
"description": "VK Access Token",
"password": true
}
]
}
Cursor
Create .cursor/mcp.json:
{
"mcpServers": {
"vk": {
"command": "node",
"args": ["src/index.js"],
"env": {
"VK_ACCESS_TOKEN": "your_token",
"VK_MCP_PROFILE": "social"
}
}
}
}
Claude Desktop
Edit claude_desktop_config.json:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%/Claude/claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"vk": {
"command": "node",
"args": ["/absolute/path/to/full-vk-mcp/src/index.js"],
"env": {
"VK_ACCESS_TOKEN": "your_token",
"VK_MCP_PROFILE": "minimal"
}
}
}
}
Windsurf / Other MCP Clients
Use the stdio transport and provide VK_ACCESS_TOKEN via environment variables.
Environment Variables
| Variable | Default | Description |
|---|---|---|
VK_ACCESS_TOKEN |
(required) | Your VK API access token |
VK_MCP_PROFILE |
— | Built-in profile name (minimal, social, full, etc.) |
VK_MCP_MODE |
read |
read — read-only, write — non-financial writes, money — financially sensitive, all — everything |
VK_MCP_INCLUDE_SECTIONS |
— | Comma-separated whitelist of API sections. Without a profile, safe subset (users, groups, wall, friends, photos) is used |
VK_MCP_EXCLUDE_SECTIONS |
ads,secure (without profile / without explicit includes) |
Comma-separated blacklist of API sections (e.g., ads,secure). Skipped when VK_MCP_INCLUDE_SECTIONS or VK_MCP_INCLUDE_METHODS is set |
VK_MCP_INCLUDE_METHODS |
— | Comma-separated whitelist of methods (e.g., users.get,wall.get) |
VK_MCP_EXCLUDE_METHODS |
— | Comma-separated blacklist of methods |
VK_MCP_MAX_TOOLS |
— | Limit the number of exposed tools |
Mode Filtering
The server automatically classifies each VK API method into risk levels:
| Mode | Description | Sections |
|---|---|---|
read |
Read-only methods | Safe subset: users, groups, wall, friends, photos |
write |
Read + non-financial writes | Can modify your account (post, edit, delete, send, etc.) |
money |
Financially sensitive only | ads, market, orders, store, gifts, donut, votes, selected secure.* |
all |
Everything | Read + write + money — no restrictions |
- Read methods —
get*,search*,is*,are*,check*,resolve*,find*,count*,lookup*,list* - Write methods — everything else (post, edit, delete, send, etc.)
- Money methods — any method in financial sections or explicitly tagged (
secure.getAppBalance, etc.)
Use VK_MCP_MODE=read to prevent the AI from making any changes to your VK account.
Use VK_MCP_MODE=money when you need ads, market, or payment-related tools.
Running Locally
# With .env file (recommended for development)
node src/index.js
# Or inline
VK_ACCESS_TOKEN=your_token node src/index.js
# Use a profile
VK_ACCESS_TOKEN=your_token VK_MCP_PROFILE=minimal node src/index.js
# Read-only mode
VK_ACCESS_TOKEN=your_token VK_MCP_MODE=read node src/index.js
# Include only specific sections
VK_ACCESS_TOKEN=your_token VK_MCP_INCLUDE_SECTIONS=users,wall node src/index.js
CLI Commands
# List all available profiles
node src/index.js --list-profiles
# List tools for a specific profile (no token required)
VK_MCP_PROFILE=minimal node src/index.js --list-tools
Available Tools (by Category)
| Category | Examples | Count |
|---|---|---|
| Wall | vk_wall_get, vk_wall_post, vk_wall_edit, vk_wall_delete, vk_wall_search |
10+ |
| Users | vk_users_get, vk_users_search, vk_users_get_followers |
5+ |
| Groups | vk_groups_get, vk_groups_get_members, vk_groups_search, vk_groups_join |
20+ |
| Photos | vk_photos_get, vk_photos_get_upload_server, vk_photos_save |
15+ |
| Videos | vk_video_get, vk_video_search, vk_video_save |
10+ |
| Messages | vk_messages_get_history, vk_messages_get_conversations, vk_messages_send |
20+ |
| Friends | vk_friends_get, vk_friends_get_online, vk_friends_add |
10+ |
| Market | vk_market_get, vk_market_search, vk_market_get_orders |
10+ |
| Stories | vk_stories_get, vk_stories_get_upload_server |
5+ |
| Polls | vk_polls_create, vk_polls_get_by_id, vk_polls_add_vote |
5+ |
| Stats | vk_stats_get, vk_stats_get_post_reach |
2+ |
| Ads | vk_ads_get_campaigns, vk_ads_get_ads, vk_ads_get_statistics |
15+ |
| + 60 more sections | docs, notes, board, fave, notifications, pages, storage, etc. | — |
Total: 180+ tools auto-generated from the official VK API schema.
Examples
Get your wall posts
Tool: vk_wall_get
Arguments: { "count": 5 }
Search for users
Tool: vk_users_search
Arguments: { "q": "Ivan Ivanov", "count": 10 }
Get community members
Tool: vk_groups_get_members
Arguments: { "group_id": "apiclub", "count": 100 }
Create a poll
Tool: vk_polls_create
Arguments: {
"question": "What's your favorite color?",
"add_answers": "[\"Red\", \"Green\", \"Blue\"]"
}
Development
# Run tests (schema downloads automatically on first run)
npm test
# Start the server
node src/index.js
Project Structure
full-vk-mcp/
├── src/
│ ├── index.js # MCP server entry point
│ ├── schema-loader.js # Loads and filters VK API schema
│ ├── tool-registry.js # Builds MCP tools from schema
│ ├── param-converter.js # Converts VK params to JSON Schema
│ └── vk-client.js # VK API HTTP client
├── vk-api-schema/ # Official VK API schema (JSON) — see note below
├── tests.test.js # Test suite
├── .env # Your token (gitignored)
├── package.json
└── README.md
VK API Schema
The VK API schema is not included in this repository to keep it lightweight. On the first run (server or tests), it is downloaded automatically from the official VK repository:
https://github.com/VKCOM/vk-api-schema
The schema is saved to vk-api-schema/ in the project root and cached for subsequent runs.
Updating the Schema
To get the latest VK API changes, delete the cached folder and restart:
rm -rf vk-api-schema/
node src/index.js # schema will be re-downloaded automatically
Security
- Token storage: Use
.envor your MCP client's secure environment variables. Never commit tokens. - Least privilege: Use
VK_MCP_MODE=readif the AI only needs to read data. - Section filtering: Exclude sensitive sections like
ads,secureif not needed. - Local execution: The server uses stdio transport — it does not open any network ports.
Troubleshooting
| Issue | Solution |
|---|---|
VK_ACCESS_TOKEN is required |
Create .env file or set the environment variable |
Unknown tool |
Check that the method name uses snake_case (vk_wall_get not vk.wall.get) |
Access denied |
Your token lacks the required VK permission scope |
| Too many tools | Use VK_MCP_INCLUDE_SECTIONS or VK_MCP_MODE=read to filter |
License
MIT
Contributing
Pull requests are welcome! Please open an issue first to discuss major changes.
Made for the Model Context Protocol ecosystem
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。