@fingertip/mcp
A Model Context Protocol (MCP) server implementation for the Fingertip API, allowing AI assistants to interact with Fingertip's site management capabilities.
Overview
@fingertip/mcp is a Model Context Protocol (MCP) server implementation for the Fingertip API, enabling AI assistants to manage Fingertip's site capabilities.
To use @fingertip/mcp, install it via npm or Smithery, set your Fingertip API key as an environment variable, and run the MCP server.
- List available Fingertip sites - Retrieve detailed information about specific sites - Create new sites with basic configurations
- AI assistants managing multiple Fingertip sites.
- Automating site creation and management tasks.
- Integrating Fingertip site management into other applications.
Add to your AI client
Use these steps to connect @fingertip/mcp in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"fingertip-mcp-fingertip-com": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fingertip-mcp-fingertip-com"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"fingertip-mcp-fingertip-com": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fingertip-mcp-fingertip-com"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"fingertip-mcp-fingertip-com": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fingertip-mcp-fingertip-com"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"fingertip-mcp-fingertip-com": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fingertip-mcp-fingertip-com"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"fingertip-mcp-fingertip-com": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fingertip-mcp-fingertip-com"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"fingertip-mcp-fingertip-com": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fingertip-mcp-fingertip-com"
]
}
}
}FAQ
What is required to run @fingertip/mcp?
You need Node.js 16+ and a valid Fingertip API key.
Can I use @fingertip/mcp without an API key?
No, a valid Fingertip API key is required to access the functionalities.