
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
create-tmcp
Advanced tools
CLI tool to create TMCP (lightweight MCP) projects with interactive setup
Interactive CLI tool to create TMCP (lightweight MCP) projects with full scaffolding support.
Create a new TMCP project interactively:
npx @tmcp/create-tmcp
Or create in a specific directory:
npx @tmcp/create-tmcp my-project
The CLI will guide you through setting up a complete TMCP project with:
my-project/
├── package.json # Dependencies and scripts
├── README.md # Project documentation
├── src/
│ ├── index.js # Main server implementation
│ └── example.js # Example server (optional)
Each generated project includes:
# Create new project
npx @tmcp/create-tmcp my-mcp-server
# Follow interactive prompts:
# ✓ Select Valibot adapter
# ✓ Choose STDIO + HTTP transports
# ✓ Include OAuth authentication
# ✓ Generate example server
# Start development
cd my-mcp-server
pnpm install
pnpm run dev
import * as v from 'valibot';
const UserSchema = v.object({
name: v.pipe(v.string(), v.description('User name')),
age: v.pipe(v.number(), v.description('User age')),
});
import { z } from 'zod';
const UserSchema = z.object({
name: z.string().describe('User name'),
age: z.number().describe('User age'),
});
import { type } from 'arktype';
const UserSchema = type({
name: 'string',
age: 'number',
});
The CLI adapts to your preferences:
Generated projects include:
--watch
flagMIT
FAQs
CLI tool to create TMCP (lightweight MCP) projects with interactive setup
We found that create-tmcp 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.