Skip to main content
Glama
RSS3-Network

RSS3 MCP Server

Official
by RSS3-Network

API-get-input-schema

Retrieve the input schema for any API tool within the RSS3 MCP Server before making a call to ensure correct parameters.

Instructions

Get the input schema for a given API. We should always use this tool to get the input schema for a given API before calling the API.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
toolNameNoThe name of the tool to get the input schema for

Implementation Reference

  • index.js:129-142 (registration)
    Registers the 'API-get-input-schema' tool in the list of tools returned by ListToolsRequestSchema handler. Adds it as the first (unshifted) tool with a single required input 'toolName'.
    tools.unshift({
    	name: "API-get-input-schema",
    	description:
    		"Get the input schema for a given API. We should always use this tool to get the input schema for a given API before calling the API.",
    	inputSchema: {
    		type: "object",
    		properties: {
    			toolName: {
    				type: "string",
    				description: "The name of the tool to get the input schema for",
    			},
    		},
    	},
    });
  • Handles the 'API-get-input-schema' tool call. Iterates over all MCP tools to find the one matching params.toolName, then returns its inputSchema as JSON text.
    if (name === "API-get-input-schema") {
    	for (const mcpToolWithClient of mcpToolWithClients) {
    		for (const [toolName, def] of Object.entries(
    			mcpToolWithClient.mcpTools.tools,
    		)) {
    			for (const method of def.methods) {
    				const toolNameWithMethod = `${toolName}-${method.name}`;
    				const truncatedToolName = toolNameWithMethod.slice(0, 64);
    				if (truncatedToolName === params.toolName) {
    					return {
    						content: [
    							{ type: "text", text: JSON.stringify(method.inputSchema) },
    						],
    					};
    				}
    			}
    		}
    	}
    	throw new Error(`Method ${params.toolName} not found`);
    }
  • Input schema for the 'API-get-input-schema' tool, defining a single 'toolName' string property.
    inputSchema: {
    	type: "object",
    	properties: {
    		toolName: {
    			type: "string",
    			description: "The name of the tool to get the input schema for",
    		},
    	},
    },
Behavior2/5

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

No annotations provided, and description does not disclose behavioral traits such as read-only nature, authentication needs, or side effects. While the action implies no side effects, the description fails to explicitly state any behavioral constraints beyond the basic purpose.

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?

Two concise sentences, no redundant information. Purpose is front-loaded in the first sentence. Every word adds value.

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

Completeness4/5

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

Given the tool's simplicity (1 parameter, no output schema, no annotations), the description adequately covers its purpose and usage. However, it does not describe the output format or return value, which would be useful for an agent invoking this tool.

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?

Schema coverage is 100% for the single parameter 'toolName', with a clear description. The tool description adds no additional meaning beyond what the schema already provides, meeting baseline expectations but not exceeding them.

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

Purpose5/5

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

Description clearly states it gets the input schema for a given API and emphasizes using it before calling the API. Verb and resource are specific. No sibling tools to differentiate, but purpose is unambiguous.

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

Usage Guidelines5/5

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

Explicitly states 'always use this tool to get the input schema... before calling the API.' Provides clear when-to-use guidance. No alternatives or exclusions needed due to absence of siblings.

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/RSS3-Network/mcp-server-rss3'

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