'Install and configure OpenEvidence SDK/API authentication.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add jeremylongshore/tons-of-skills-marketplace --skill openevidence-install-auth --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Openevidence Install Auth?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jeremylongshore-openevidence-install-auth-tons-of-skills-marketplace)More formats (shields.io, HTML) on the badges page.
---
name: openevidence-install-auth
description: 'Install and configure OpenEvidence SDK/API authentication.
Use when setting up a new OpenEvidence integration.
Trigger: "install openevidence", "setup openevidence", "openevidence auth".
'
allowed-tools: Read, Write, Edit, Bash(npm:*), Bash(pip:*), Grep
version: 1.13.0
license: MIT
author: Jeremy Longshore <jeremy@intentsolutions.io>
tags:
- saas
- openevidence
- healthcare
compatibility: Designed for Claude Code
---
# OpenEvidence Install & Auth
## Overview
Set up OpenEvidence Medical AI API for clinical decision support and evidence-based queries.
## Prerequisites
- OpenEvidence account and API access
- API key/credentials from OpenEvidence dashboard
- Node.js 18+ or Python 3.8+
## Instructions
### Step 1: Install SDK
```bash
npm install @openevidence/sdk
# API key from OpenEvidence developer portal
```
### Step 2: Configure Authentication
```bash
export OPENEVIDENCE_API_KEY="your-api-key-here"
echo 'OPENEVIDENCE_API_KEY=your-api-key' >> .env
```
### Step 3: Verify Connection (TypeScript)
```typescript
import { OpenEvidenceClient } from '@openevidence/sdk';
const client = new OpenEvidenceClient({
apiKey: process.env.OPENEVIDENCE_API_KEY,
organization: process.env.OPENEVIDENCE_ORG_ID
});
const result = await client.query({ question: 'What are first-line treatments for Type 2 diabetes?' });
console.log(`Answer: ${result.answer.substring(0, 100)}...`);
console.log(`Citations: ${result.citations.length} references`);
```
### Step 4: Verify Connection (Python)
```python
import openevidence
client = openevidence.Client(api_key=os.environ['OPENEVIDENCE_API_KEY'])
result = client.query(question='What are first-line treatments for Type 2 diabetes?')
print(f'Answer: {result.answer[:100]}...')
print(f'Citations: {len(result.citations)} references')
```
## Error Handling
| Error | Code | Solution |
|-------|------|----------|
| Invalid API key | 401 | Verify credentials in dashboard |
| Permission denied | 403 | Check API scopes/permissions |
| Rate limited | 429 | Implement backoff |
## Resources
- [OpenEvidence Documentation](https://www.openevidence.com)
## Next Steps
After auth, proceed to `openevidence-hello-world`.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!