1. Conduid
  2. Developer Tools
  3. Pinpoint MCP
MCP server · Developer Tools

Pinpoint MCP

MCP server: Pinpoint MCP

Unclaimed last commit a year ago devtools
37Low

Scored 3 months ago · breakdown

About Pinpoint MCP

Pinpoint MCP is an MCP server published by michal-sikora-pp in the Developer Tools category: mCP server: Pinpoint MCP. It has been installed 0 times through Conduid.

The repository has 1 stars and 0 forks, with the last commit a year 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 pinpoint-mcp

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 Pinpoint MCP

Powered by Claude · Grounded in docs

I know everything about Pinpoint MCP. 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

Pinpoint MCP Server

A Model Context Protocol (MCP) server that provides access to Pinpoint job board data for AI assistants like Claude.

Overview

This server implements the Model Context Protocol (MCP) to allow AI assistants to interact with the Pinpoint job board API. It provides tools for searching jobs and resources for accessing job data.

Features

  • 🔍 Search for jobs with filtering options
  • 📋 Access job details and information
  • 🔄 Real-time data from Pinpoint API
  • 🤖 Compatible with MCP-enabled AI assistants

Quick Start

1. Install Dependencies

npm install

2. Configure Environment Variables

Create a .env file with your Pinpoint API credentials:

PINPOINT_API_KEY=your_api_key_here
PINPOINT_SUBDOMAIN=your_subdomain_here

3. Run the Server

npx tsx main.ts

For testing with MCP Inspector:

npx -y @modelcontextprotocol/inspector npx -y tsx main.ts

Claude Code Configuration

To use this MCP server with Claude Code, add the following configuration to your Claude Desktop config file:

{
  "mcpServers": {
    "pinpoint": {
      "install": "npm install",
      "command": "npx",
      "args": [
        "-y",
        "tsx",
        "/Users/michalsikora/learning/pinpoint-mcp/main.ts"
      ],
      "env": {
        "PINPOINT_API_KEY": "your_api_key_here",
        "PINPOINT_SUBDOMAIN": "your_subdomain_here"
      }
    }
  }
}

Replace your_api_key_here and your_subdomain_here with your actual Pinpoint API credentials.

API Integration

The server connects to the Pinpoint API using the wrapper in the /api directory. It provides:

  • Job search functionality with filtering
  • Detailed job information retrieval
  • Error handling and request management

MCP Tools and Resources

Tools

  • search-jobs: Search for jobs with various filters
  • get-time: Get the current timestamp
  • echo: Simple text echo tool

Resources

  • jobs://recent: Access recent job listings
  • jobs://job/{id}: Access specific job details by ID

Dependencies

  • @modelcontextprotocol/sdk: MCP server framework
  • TypeScript and development tools
  • Axios for API requests

Project Structure

  • main.ts: Main server implementation
  • /api: Pinpoint API integration
    • pinpoint.ts: API wrapper with TypeScript interfaces
    • index.ts: Clean export interface
  • /utils: Utility functions

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

Questions

About Pinpoint MCP

How do I install Pinpoint MCP?

Run npx pinpoint-mcp, 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 Pinpoint MCP safe to use with an AI agent?

Its trust score is 37 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 Pinpoint MCP still maintained?

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