Peeper MCP Server
Model Control Panel server for Peeper application
Overview
Peeper MCP Server is a Model Control Panel (MCP) server designed for the Peeper application, providing a unified API to interact with various language models.
To use Peeper MCP Server, clone the repository, install the dependencies, configure your API keys in a .env file, and start the server using npm commands.
- Unified API for different AI model providers - Model discovery endpoint - Text completion endpoint - Easy to extend for additional models
- Integrating multiple AI models into a single application.
- Generating text completions for various prompts using different models.
- Facilitating model discovery for developers.
Add to your AI client
Use these steps to connect Peeper MCP Server 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": {
"peeper-mcp-server-maskedsaqib": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-peeper-mcp-server-maskedsaqib"
]
}
}
}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": {
"peeper-mcp-server-maskedsaqib": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-peeper-mcp-server-maskedsaqib"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"peeper-mcp-server-maskedsaqib": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-peeper-mcp-server-maskedsaqib"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"peeper-mcp-server-maskedsaqib": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-peeper-mcp-server-maskedsaqib"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"peeper-mcp-server-maskedsaqib": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-peeper-mcp-server-maskedsaqib"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"peeper-mcp-server-maskedsaqib": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-peeper-mcp-server-maskedsaqib"
]
}
}
}FAQ
Can I add more models to the Peeper MCP Server?
Yes! The server is designed to be easily extendable for additional models.
What programming language is Peeper MCP Server written in?
Peeper MCP Server is written in JavaScript.
Is there a license for using Peeper MCP Server?
Yes, this project is licensed under the MIT License.