Netmex MCP
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Netmex MCPlist all available tools in my project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Netmex MCP
A lightweight and extendable Model Context Protocol (MCP) server toolkit for building custom tools that integrate with AI assistants.
This package provides a ready-to-use MCP server, a clean structure for defining tools, and the option for developers to add their own tools without modifying the package.
Installation
npm install @netmex/mcpOr with yarn:
yarn add @netmex/mcpRelated MCP server: SimpleMCP
Usage
After installing, you can run the MCP server using:
npx netmex-mcpCreating Custom Tools
To add your own tools, create a tool file inside a mcp-tools/ directory in your project root:
Example Tool (TypeScript)
import type { Tool } from "@netmex/mcp/types";
const GreetTool: Tool = {
name: "greet",
description: "Returns a friendly greeting",
inputSchema: {
type: "object",
properties: {
name: { type: "string", description: "Name to greet" }
},
required: ["name"]
},
handler: async ({ name }) => ({
content: [
{
type: "text",
text: `Hello, ${name}!`
}
]
})
};
export default GreetTool;Using Tools Inside Your Project
Once placed inside mcp-tools/, tools are automatically discovered by the loader and exposed to MCP clients.
No registration needed. No editing package code. Just drop the tool file in place.
Accessing Tool Input
Each tool receives structured arguments, validated according to its inputSchema.
Recommended Directory Layout
your-project/
├── mcp-tools/
│ ├── GreetTool.ts
│ └── AnotherTool.ts
├── node_modules/
├── package.json
└── ...NPM Plugin Tools
You can also install tools from npm. Any dependency whose name starts with:
netmex-mcp-tool-will be auto-loaded by the server.
Example:
npm install netmex-mcp-tool-analyticsHandling Errors
If a tool throws or returns an invalid value, the server automatically returns a JSON-RPC error:
{
"error": {
"code": -32603,
"message": "Internal error",
"data": { "details": "Something went wrong" }
}
}Use try/catch inside handlers for custom error responses.
Built-In Tools
This package includes a few tools by default:
about
hello
(more coming soon)
Development
To build the MCP server locally:
npm install
npm run buildTo start it directly:
npm run startMore About MCP
For more information on the Model Context Protocol, visit the official MCP documentation.
License
This project is licensed under the MIT License.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityNot gradedmaintenanceA lightweight and fast MCP server that enables AI agents to efficiently discover and execute tools through progressive disclosure, minimizing context consumption while supporting safe code execution in external environments.12
- FlicenseNot gradedqualityDmaintenanceA lightweight MCP server that auto-discovers tool kits, enabling tools like SQLite queries and web searches via Tavily API.3
- AlicenseNot gradedqualityDmaintenanceAn MCP server that enables AI agents to automatically discover, install, and learn to use new tools without manual configuration.3515MIT
- AlicenseNot gradedqualityDmaintenanceA starter template for building MCP servers that enable AI assistants to interact with custom tools and data.8MIT
Related MCP Connectors
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
MCP server for secureFlows: token-free URL builders and integration-linting tools for AI agents.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/netmexmedia/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server