1. Conduid
  2. Developer Tools
  3. Generic MCP Template
MCP server · Developer Tools

Generic MCP Template

MCP server: Generic MCP Template

Unclaimed last commit 9 months ago devtools
39Low

Scored 3 months ago · breakdown

About Generic MCP Template

Generic MCP Template is an MCP server published by v4lheru in the Developer Tools category: mCP server: Generic MCP Template. It has been installed 0 times through Conduid.

The repository has 5 stars and 1 forks, with the last commit 9 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx generic-mcp-template

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Generic MCP Template

Powered by Claude · Grounded in docs

I know everything about Generic MCP Template. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Generic MCP Server Template

A flexible template for creating Model Context Protocol (MCP) servers using the official TypeScript SDK.

What is MCP?

The Model Context Protocol (MCP) enables communication between AI assistants and locally running servers that provide additional tools and resources.

Features

  • Official SDK: Built with @modelcontextprotocol/sdk
  • Type Safety: Full TypeScript support with Zod validation
  • Stdio Transport: Standard transport for local agent integration
  • Modular Design: Easy to add new tools and resources

Getting Started

Prerequisites

  • Node.js (v16 or later)
  • npm or yarn

Installation

  1. Clone the repository:

    git clone https://github.com/v4lheru/generic-mcp-template.git
    cd generic-mcp-server
    
  2. Install dependencies:

    npm install
    
  3. Build the project:

    npm run build
    

Usage

To run the server locally (for testing or development):

npm run start

Note: This server uses stdio transport, so it expects to communicate via standard input/output. It will not start an HTTP server.

Adding to Claude Desktop

  1. Open Claude Desktop config (e.g. ~/Library/Application Support/Claude/claude_desktop_config.json on macOS).
  2. Add your server:
{
  "mcpServers": {
    "my-server": {
      "command": "node",
      "args": ["/path/to/generic-mcp-server/dist/index.js"]
    }
  }
}

Customization

  • Tools: Add new tools in src/tools.ts.
  • Resources: Add new resources in src/resources.ts.
  • Config: Update src/config.ts for environment variables.

License

MIT

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Generic MCP Template

How do I install Generic MCP Template?

Run npx generic-mcp-template, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Generic MCP Template safe to use with an AI agent?

Its trust score is 39 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Generic MCP Template still maintained?

The last commit was 9 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.