
UseKeen Documentation MCP Server
Enables AI assistants to search for documentation of packages and services, providing implementation details, examples, and specifications through a specialized API.
README
UseKeen Documentation MCP Server
MCP Server for the UseKeen Package Documentation Search API, enabling Claude and other AI assistants to search for documentation of packages and services.
Tools
usekeen_package_doc_search
- Search documentation of packages and services to find implementation details, examples, and specifications
- Required inputs:
package_name
(string): Name of the package or service to search documentation for (e.g. 'react', 'aws-s3', 'docker')
- Optional inputs:
query
(string): Search term to find specific information within the package/service documentation (e.g. 'file upload example', 'authentication methods')
- Returns: Documentation search results with relevant matches, URLs, and snippets
Prerequisites
- UseKeen API Key: Get a UseKeen API key from the UseKeen service
- Node.js (for NPX installation) or Docker (for Docker installation)
- Claude Desktop or VS Code with MCP extension
Installation
Option 1: NPX (Recommended)
The easiest way to use this MCP server is via NPX:
npx usekeen-mcp
Option 2: Docker
You can also run the server using Docker:
docker run -e USEKEEN_API_KEY=your_api_key_here mcp/usekeen
Option 3: Local Development
For local development or manual installation:
# Clone the repository
git clone <repository-url>
cd usekeen-mcp
# Copy environment file and add your API key
cp .env.example .env
# Edit .env and add your USEKEEN_API_KEY
# Install dependencies
npm install
# Build and run
npm run build
npm start
Configuration
Usage with Claude Desktop
Add the following to your claude_desktop_config.json
:
NPX
{
"mcpServers": {
"usekeen": {
"command": "npx",
"args": [
"-y",
"usekeen-mcp"
],
"env": {
"USEKEEN_API_KEY": "your_api_key_here"
}
}
}
}
Docker
{
"mcpServers": {
"usekeen": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"USEKEEN_API_KEY",
"mcp/usekeen"
],
"env": {
"USEKEEN_API_KEY": "your_api_key_here"
}
}
}
}
Usage with VS Code
For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P
and typing Preferences: Open Settings (JSON)
.
Optionally, you can add it to a file called .vscode/mcp.json
in your workspace. This will allow you to share the configuration with others.
Note that the
mcp
key is not needed in the.vscode/mcp.json
file.
NPX
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "usekeen_api_key",
"description": "UseKeen API Key",
"password": true
}
],
"servers": {
"usekeen": {
"command": "npx",
"args": ["-y", "usekeen-mcp"],
"env": {
"USEKEEN_API_KEY": "${input:usekeen_api_key}"
}
}
}
}
}
Docker
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "usekeen_api_key",
"description": "UseKeen API Key",
"password": true
}
],
"servers": {
"usekeen": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/usekeen"],
"env": {
"USEKEEN_API_KEY": "${input:usekeen_api_key}"
}
}
}
}
}
Manual Setup
Using the Helper Scripts
We provide two helper scripts to make it easier to run the server:
-
Local Execution:
# Make the script executable (first time only) chmod +x run-local.sh # Run the server locally ./run-local.sh
-
Docker Execution:
# Make the script executable (first time only) chmod +x run-docker.sh # Run the server in Docker ./run-docker.sh
Both scripts will check for a .env
file containing your USEKEEN_API_KEY
. You can create this file based on the provided .env.example
.
Running with npm
Set the USEKEEN_API_KEY
environment variable and run the server:
# Install dependencies
npm install
# Build the TypeScript code
npm run build
# Run the server
USEKEEN_API_KEY=your_api_key npm start
Running with Docker
Build and run the Docker container with the API key:
# Build the Docker image
docker build -t mcp/usekeen .
# Run the container
docker run -e USEKEEN_API_KEY=your_api_key mcp/usekeen
Environment Variables
USEKEEN_API_KEY
: Required. Your UseKeen API key for authentication.
Troubleshooting
If you encounter errors, verify that:
- Your UseKeen API key is valid and correctly set in your configuration
- You have an active internet connection to reach the UseKeen API
- The UseKeen service is currently available
Build
Docker build:
docker build -t mcp/usekeen .
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.