
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@mcp-typescript-simple/example-tools-basic
Advanced tools
Example: Basic MCP tools for demonstration and testing
Example MCP Tool Pack - Basic tools for demonstration and testing
This package provides simple, example MCP tools that serve multiple purposes:
⚠️ Note: These tools are intentionally simple and have no real-world utility beyond serving as examples and test fixtures.
helloGreets a user by name
Input:
name (string): Name of the person to greetExample:
const result = await basicTools.call('hello', { name: 'World' });
// Returns: "Hello, World! 👋"
echoEchoes back the provided message
Input:
message (string): Message to echo backExample:
const result = await basicTools.call('echo', { message: 'Test' });
// Returns: "Echo: Test"
current-timeReturns the current server timestamp in ISO 8601 format
Input: None
Example:
const result = await basicTools.call('current-time', {});
// Returns: "Current time: 2025-10-20T12:34:56.789Z"
import { basicTools } from '@mcp-typescript-simple/tools-basic';
// Get all tools as MCP Tool list
const tools = basicTools.list();
// Invoke a tool
const result = await basicTools.call('hello', { name: 'Alice' });
// Use individual tools
import { helloTool } from '@mcp-typescript-simple/tools-basic';
const result = await helloTool.handler({ name: 'Bob' });
Use this package as a template for creating domain-specific tool packs:
defineTool() from the frameworkSee the source code for implementation details.
MIT
FAQs
Example: Basic MCP tools for demonstration and testing
The npm package @mcp-typescript-simple/example-tools-basic receives a total of 3 weekly downloads. As such, @mcp-typescript-simple/example-tools-basic popularity was classified as not popular.
We found that @mcp-typescript-simple/example-tools-basic demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.