🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@intelagent/create-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@intelagent/create-mcp

Scaffold a new MCP server project with @intelagent/mcp-shared

latest
npmnpm
Version
1.0.1
Version published
Weekly downloads
9
50%
Maintainers
1
Weekly downloads
 
Created
Source

my-mcp-server

A Model Context Protocol server built with @intelagent/mcp-shared.

Quick Start

npm install
npm run build
npm start

Add to Claude Code

Create .mcp.json in your project root:

{
  "mcpServers": {
    "my-mcp-server": {
      "command": "node",
      "args": ["path/to/dist/index.js"]
    }
  }
}

Tools

ToolDescription
reverse_stringReverse a string
word_countCount words and characters
server_infoServer metadata and health check

Development

npm run dev       # Run with tsx (no build needed)
npm run build     # Compile TypeScript
npm test          # Run tests
npm run test:watch # Watch mode

Adding a New Tool

  • Define types in src/types.ts
  • Add business logic to a service in src/services/
  • Define the tool in src/tools/ using the ToolDefinition interface
  • Wire it up in src/index.ts
  • Add tests in tests/

See the enrichment MCP for a full production example.

License

MIT

FAQs

Package last updated on 15 Mar 2026

Did you know?

Socket

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.

Install

Related posts