Skip to main content
Glama

wpnav_introspect

Discover available WordPress management capabilities and configuration details for the WP Navigator MCP server to understand what actions you can perform.

Instructions

Get WP Navigator Pro API capabilities, policy configuration, and environment hints. Call this first to understand what the API can do.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler function that fetches introspection data from the configured WPNav introspect endpoint using wpRequest and returns it as formatted JSON text content.
    handler: async (args, context) => { const { wpRequest, config } = context; const introspectUrl = config.wpnavIntrospect; const data = await wpRequest(introspectUrl); return { content: [ { type: 'text', text: context.clampText(JSON.stringify(data, null, 2)), }, ], }; },
  • Full registration of the wpnav_introspect tool with toolRegistry, including schema definition, handler, and CORE category.
    toolRegistry.register({ definition: { name: 'wpnav_introspect', description: 'Get WP Navigator Pro API capabilities, policy configuration, and environment hints. Call this first to understand what the API can do.', inputSchema: { type: 'object', properties: {}, required: [], }, }, handler: async (args, context) => { const { wpRequest, config } = context; const introspectUrl = config.wpnavIntrospect; const data = await wpRequest(introspectUrl); return { content: [ { type: 'text', text: context.clampText(JSON.stringify(data, null, 2)), }, ], }; }, category: ToolCategory.CORE, });
  • Tool schema definition in the main tools export array, used for MCP tool listing or validation.
    { name: 'wpnav_introspect', description: 'Get WP Navigator Pro API capabilities, policy configuration, and environment hints. Call this first to understand what the API can do.', inputSchema: { type: 'object' as const, properties: {}, required: [], }, },

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/littlebearapps/wp-navigator-mcp'

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