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
npx pinpoint-mcpThis 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
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 filtersget-time: Get the current timestampecho: Simple text echo tool
Resources
jobs://recent: Access recent job listingsjobs://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 integrationpinpoint.ts: API wrapper with TypeScript interfacesindex.ts: Clean export interface
/utils: Utility functions
README mirrored from the source repository 3 months ago. The original is authoritative.