MindPeeker Logo
Resources

Downloads & Resources

Downloadable resources, tools, templates, and documentation for MindPeeker platform

SDK Downloads

Official SDKs

JavaScript/TypeScript SDK

Version: 2.1.0
Last Updated: October 2024
Requirements: Node.js 14+, browser support

npm install @mindpeeker/sdk

yarn add @mindpeeker/sdk

<script src="https://cdn.mindpeeker.com/sdk/v2.1.0/mindpeeker.js"></script>

Download Options:

Python SDK

Version: 1.8.3
Last Updated: October 2024
Requirements: Python 3.8+

pip install mindpeeker-sdk

conda install -c mindpeeker mindpeeker-sdk

pip install mindpeeker-sdk==1.8.3.dev0

Download Options:

Java SDK

Version: 1.5.2
Last Updated: October 2024
Requirements: Java 11+

<!-- Maven Dependency -->
<dependency>
    <groupId>com.mindpeeker</groupId>
    <artifactId>mindpeeker-sdk</artifactId>
    <version>1.5.2</version>
</dependency>

<!-- Gradle Dependency -->
implementation 'com.mindpeeker:mindpeeker-sdk:1.5.2'

Download Options:

C#/.NET SDK

Version: 1.3.1
Last Updated: October 2024
Requirements: .NET 6.0+

dotnet add package MindPeeker.SDK

Install-Package MindPeeker.SDK

Download Options:

Go SDK

Version: 1.1.0
Last Updated: October 2024
Requirements: Go 1.18+

go get github.com/mindpeeker/go-sdk/v1

go get github.com/mindpeeker/go-sdk/v1@v1.1.0

Download Options:

API Tools

Postman Collection

Version: 2.0.1
Last Updated: October 2024

Complete API collection for testing and development:

{
  "info": {
    "name": "MindPeeker API v2",
    "description": "Complete API collection for MindPeeker platform",
    "version": "2.0.1"
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mindpeeker.com/v1"
    },
    {
      "key": "apiKey",
      "value": "your_api_key_here"
    }
  ]
}

Download Options:

OpenAPI Specification

Version: 2.0.1
Format: OpenAPI 3.0.3

Complete API specification for integration:

Download Options:

Insomnia Collection

Version: 2.0.1
Last Updated: October 2024

API collection for Insomnia REST client:

Download Options:

Development Tools

CLI Tool

Version: 1.4.0
Requirements: Node.js 16+, Python 3.8+

Command-line interface for MindPeeker platform:

npm install -g @mindpeeker/cli

pip install mindpeeker-cli

mindpeeker auth login

mindpeeker session create --cue "Your question here" --type remote_viewing

mindpeeker session list

mindpeeker session results <session-id>

Download Options:

Docker Images

Version: Latest
Registry: docker.io/mindpeeker

Official Docker images for development and deployment:

docker pull mindpeeker/api-server:latest

docker pull mindpeeker/api-server:v2.1.0

docker run -p 3000:3000 mindpeeker/dev-environment:latest

Available Images:

  • mindpeeker/api-server: Production API server
  • mindpeeker/web-app: Frontend application
  • mindpeeker/dev-environment: Complete development setup
  • mindpeeker/worker: Background job processor
  • mindpeeker/nginx: Reverse proxy configuration

Kubernetes Manifests

Version: 2.0.0
Last Updated: October 2024

Kubernetes deployment manifests:

Download Options:

Templates & Examples

Session Templates

Remote Viewing Templates

Format: JSON
Purpose: Standardized remote viewing session configurations

{
  "template_name": "Standard Remote Viewing",
  "session_type": "remote_viewing",
  "parameters": {
    "duration": 1800,
    "confidence_threshold": 0.7,
    "analysis_types": ["visual", "spatial", "temporal"],
    "stages": ["preparation", "exploration", "detail", "summary"]
  },
  "cue_template": "Describe the location and characteristics of {target}",
  "metadata": {
    "protocol": "CRV",
    "viewer_experience": "intermediate"
  }
}

Download Options:

Dowsing Templates

Format: JSON
Purpose: Dowsing session configurations

{
  "template_name": "Location Dowsing",
  "session_type": "dowsing",
  "parameters": {
    "method": "pendulum",
    "question_type": "location",
    "confidence_threshold": 0.8,
    "iterations": 3
  },
  "cue_template": "Is {target} located at {location}?",
  "metadata": {
    "tool": "pendulum",
    "verification_method": "cross_check"
  }
}

Download Options:

Precognition Templates

Format: JSON
Purpose: Precognitive session configurations

{
  "template_name": "Event Prediction",
  "session_type": "precognition",
  "parameters": {
    "timeframe": "30_days",
    "confidence_threshold": 0.6,
    "analysis_types": ["temporal", "probability"],
    "risk_assessment": true
  },
  "cue_template": "What significant events will occur in {context} within {timeframe}?",
  "metadata": {
    "prediction_type": "event_based",
    "verification_period": "90_days"
  }
}

Download Options:

Code Examples

JavaScript Examples

Language: JavaScript/TypeScript
Framework: Node.js, Browser

// Basic session creation
import { MindPeekerClient } from '@mindpeeker/sdk';

const client = new MindPeekerClient({
  apiKey: process.env.MINDPEEKER_API_KEY
});

async function createSession() {
  const session = await client.sessions.create({
    cue: 'Describe the location of the missing aircraft',
    session_type: 'remote_viewing',
    parameters: {
      confidence_threshold: 0.8,
      analysis_types: ['visual', 'spatial']
    }
  });
  
  console.log('Session created:', session.id);
  return session;
}

Download Options:

Python Examples

Language: Python
Framework: Flask, Django, FastAPI

from mindpeeker import MindPeekerClient
import asyncio

async def create_session():
    client = MindPeekerClient(
        api_key=os.getenv('MINDPEEKER_API_KEY')
    )
    
    session = await client.sessions.create(
        cue='Describe the location of the missing aircraft',
        session_type='remote_viewing',
        parameters={
            'confidence_threshold': 0.8,
            'analysis_types': ['visual', 'spatial']
        }
    )
    
    print(f"Session created: {session.id}")
    return session

asyncio.run(create_session())

Download Options:

Java Examples

Language: Java
Framework: Spring Boot

// Basic session creation
import com.mindpeeker.client.MindPeekerClient;
import com.mindpeeker.model.*;

public class MindPeekerExample {
    public static void main(String[] args) {
        MindPeekerClient client = MindPeekerClient.builder()
            .apiKey(System.getenv("MINDPEEKER_API_KEY"))
            .build();
        
        Session session = client.sessions().create(SessionCreateRequest.builder()
            .cue("Describe the location of the missing aircraft")
            .sessionType(SessionType.REMOTE_VIEWING)
            .parameter("confidence_threshold", 0.8)
            .parameter("analysis_types", Arrays.asList("visual", "spatial"))
            .build());
        
        System.out.println("Session created: " + session.getId());
    }
}

Download Options:

Documentation Downloads

PDF Documentation

Format: PDF
Last Updated: October 2024

Complete documentation in printable format:

Available Documents:

Offline Documentation

Format: HTML
Size: 150MB (compressed)

Complete offline documentation bundle:

Download Options:

Training Materials

Format: Various
Purpose: Learning and certification

Available Materials:

Configuration Files

Environment Templates

Format: .env, YAML, JSON
Purpose: Development and deployment configuration

Download Options:

Integration Templates

Format: Various
Purpose: Third-party integrations

Available Integrations:

Security Resources

Security Tools

Format: Various
Purpose: Security testing and validation

Available Tools:

Certificates

Format: PEM, CRT
Purpose: SSL/TLS configuration

Download Options:

Support Resources

Troubleshooting Tools

Format: Various
Purpose: Diagnostic and problem resolution

Available Tools:

Migration Tools

Format: Various
Purpose: Data migration and platform transitions

Available Tools:

Version History

Current Versions

  • API: v2.0.1 (October 2024)
  • JavaScript SDK: v2.1.0 (October 2024)
  • Python SDK: v1.8.3 (October 2024)
  • Java SDK: v1.5.2 (October 2024)
  • C# SDK: v1.3.1 (October 2024)
  • Go SDK: v1.1.0 (October 2024)
  • CLI Tool: v1.4.0 (October 2024)

Archive

Previous versions are available in our archive directory. Each major version is supported for 12 months after the next major release.

Support

Getting Help

Reporting Issues

All downloads are provided with comprehensive documentation and support. For assistance with any of these resources, please contact our support team.