about
Get details about the Netmex MCP server's capabilities and configuration to understand available tools and integration options.
Instructions
Returns information about this MCP server
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/about.ts:11-18 (handler)The handler function that executes the logic for the 'about' tool, returning static information about the MCP server.handler: async () => ({ content: [ { type: "text", text: "This is the local AI Advisor MCP server (v1.0.0)." } ] })
- src/tools/about.ts:6-10 (schema)The input schema for the 'about' tool, defining an empty object with no required properties.inputSchema: { type: "object", properties: {}, required: [] },
- src/tools/index.ts:1-4 (registration)Registration of the 'about' tool by importing it and including it in the array of built-in tools.import { aboutTool } from "./about.js"; import { helloTool } from "./hello.js"; export const tools = [aboutTool, helloTool];
- src/server.ts:5-16 (registration)Final server registration where built-in tools (including 'about') are imported as 'builtinTools' and merged with external tools to create the complete 'tools' list used for tool calls.import { tools as builtinTools } from "./tools/index.js"; import { loadTools } from "./loadTools.js"; import type { Tool } from "./types/tool.js"; (async () => { console.error("Starting MCP Server..."); // Load external tools const externalTools: Tool[] = await loadTools(); // Merge built-in and external tools const tools: Tool[] = [...builtinTools, ...externalTools];