Socket
Book a DemoInstallSign in
Socket

@hs-web-team/aims-genai-search-mcp

Package Overview
Dependencies
Maintainers
86
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hs-web-team/aims-genai-search-mcp

A Model Context Protocol (MCP) server for searching HubSpot content using AIMS GenAI search capabilities. This project provides a service that can be integrated with AI assistants to fetch relevant content from HubSpot when answering user queries.

0.1.6
latest
npmnpm
Version published
Weekly downloads
15
-31.82%
Maintainers
86
Weekly downloads
 
Created
Source

AIMS GenAI Search MCP

A Model Context Protocol (MCP) server for searching HubSpot content using AIMS GenAI search capabilities. This project provides a service that can be integrated with AI assistants to fetch relevant content from HubSpot when answering user queries.

Features

  • MCP server implementation for AI assistant integration
  • HubSpot content search API integration
  • Support for both stdio (Claude) and SSE transport methods
  • Express server for HTTP connections

Prerequisites

  • Node.js >= 22.0.0
  • npm

Installation

Clone the repository and install dependencies:

git clone <repository-url>
cd aims-genai-search-mcp
npm install

Configuration

The application uses environment variables for configuration. You can create a .env file in the project root with the following options:

APP_VERSION=0.1.0
NODE_ENV=development
PORT=7878
TRANSPORT=stdio

Available transport methods:

  • stdio: For command-line integration (default)
  • sse: For web integration

Usage

Starting the Server

For production:

npm start

For development with auto-reloading:

npm run dev

Using the MCP Tools

The server exposes the following MCP tool:

  • search-hubspot-context: Search content in HubSpot
    • Parameters: query (string) - The search query

Development

Build the TypeScript code:

npm run build

Watch for changes during development:

npm run build:watch

Inspect MCP server:

npm run inspect

Docker

# Build the image
docker buildx build -t hubspot/genai-search-mcp .

# Run the container
docker run -i --rm --name genai-search-mcp hubspot/genai-search-mcp

Claude Desktop Configuration

If you have the current repository cloned in your local machine, you can configure Claude Desktop to use it by running building the project and then adding the following configuration:

{
  "mcpServers": {
    // ...
    "genai-search": {
      "command": "node",
      "args": ["/path/to/aims-genai-search-mcp/build/server.js"]
    }
  }
}

Alternatively you can use npx:

{
  "mcpServers": {
    // ...
    "genai-search": {
      "command": "npx",
      "args": ["@hs-web-team/aims-genai-search-mcp"]
    }
  }
}

Or Docker:

{
  "mcpServers": {
    // ...
    "genai-search": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--name",
        "genai-search-mcp",
        "hubspot/genai-search-mcp"
      ]
    }
  }
}

FAQs

Package last updated on 15 May 2025

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

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.