Skip to main content
Glama
bulatko

vk-mcp-server

vk_wall_get

Retrieve posts from VKontakte user or community walls using owner ID or domain, with pagination support for accessing content.

Instructions

Get posts from a user or community wall

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
owner_idNoWall owner ID (negative for community)
domainNoShort address of user or community
countNoNumber of posts (1-100)
offsetNoOffset for pagination

Implementation Reference

  • Tool registration and input schema definition for vk_wall_get
    {
      name: 'vk_wall_get',
      description: 'Get posts from a user or community wall',
      inputSchema: {
        type: 'object',
        properties: {
          owner_id: { type: 'number', description: 'Wall owner ID (negative for community)' },
          domain: { type: 'string', description: 'Short address of user or community' },
          count: { type: 'number', description: 'Number of posts (1-100)' },
          offset: { type: 'number', description: 'Offset for pagination' },
        },
      },
    },
  • Handler logic for vk_wall_get tool - processes arguments and calls the VK API
    case 'vk_wall_get':
      result = await vk.wallGet({
        owner_id: args.owner_id,
        domain: args.domain,
        count: args.count || 20,
        offset: args.offset,
      });
      break;
  • VKClient wallGet helper method that makes the actual VK API call
    wallGet(params) { return this.call('wall.get', params); }
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states 'Get posts' which implies a read-only operation, but doesn't specify authentication requirements, rate limits, pagination behavior (beyond the offset parameter), or what the return format looks like. For a tool with 4 parameters and no output schema, this leaves significant gaps in understanding how it behaves.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It's front-loaded with the core action and resource, making it easy to parse quickly. Every word earns its place, with no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (4 parameters, no annotations, no output schema), the description is incomplete. It doesn't address key contextual aspects like authentication needs, error handling, return format, or how it differs from sibling tools. For a data retrieval tool in a social media API context, more guidance is needed to ensure proper usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds minimal semantic context beyond the input schema, which has 100% coverage with clear descriptions for all 4 parameters. It implies the tool retrieves posts from walls, aligning with parameters like 'owner_id' and 'domain', but doesn't explain relationships between parameters (e.g., using 'owner_id' vs. 'domain') or provide usage examples. Baseline 3 is appropriate given the high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get posts') and resource ('from a user or community wall'), making the purpose immediately understandable. However, it doesn't explicitly differentiate this tool from sibling tools like 'vk_newsfeed_get' or 'vk_wall_post', which might also involve retrieving content from walls or similar sources.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools like 'vk_newsfeed_get' (which might get posts from a newsfeed) or 'vk_wall_post' (which posts to a wall), leaving the agent without context for tool selection. There's no indication of prerequisites or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bulatko/vk-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server