OSF MCP Server

OSF MCP Server

An MCP server for interacting with the Open Science Framework (OSF), enabling search for projects, registrations, preprints, and file management.

Category
Visit Server

README

OSF MCP Server

An MCP (Model Context Protocol) server for interacting with the Open Science Framework (OSF). Search projects, registrations, preprints, manage files, and more.

Features

  • Search OSF Content

    • Projects (public and private with authentication)
    • Registrations (pre-registered studies)
    • Preprints (from OSF Preprints and partner services)
  • File Management

    • List project files
    • Download files with PDF-to-Markdown conversion
    • Read cached file content
  • Project Management (requires authentication)

    • Create new projects
    • Update project metadata
    • Access wiki content
  • DOI Resolution

    • Resolve OSF DOIs to resources

Installation

# Clone the repository
cd tools/osf-mcp-server

# Create virtual environment
uv venv
source .venv/bin/activate

# Install with dependencies
uv pip install -e ".[test]"

Configuration

Environment Variables

Variable Description Default
OSF_TOKEN Personal Access Token for authenticated access None (public only)
OSF_STORAGE_PATH Path for downloaded files ~/.osf-mcp-server/files
OSF_MAX_RESULTS Maximum search results 50
OSF_REQUEST_TIMEOUT API timeout in seconds 60

Getting an OSF Token

  1. Log in to osf.io
  2. Go to Settings → Personal Access Tokens
  3. Create a new token with required scopes
  4. Set OSF_TOKEN environment variable
export OSF_TOKEN="your_token_here"

Usage

Running the Server

# Run directly
python -m osf_mcp_server

# Or via entry point
osf-mcp-server

# With custom storage path
osf-mcp-server --storage-path /path/to/storage

Claude Desktop Integration

Add to your Claude Desktop config (claude_desktop_config.json):

{
  "mcpServers": {
    "osf": {
      "command": "python",
      "args": ["-m", "osf_mcp_server"],
      "env": {
        "OSF_TOKEN": "your_token_here"
      }
    }
  }
}

Or with uv:

{
  "mcpServers": {
    "osf": {
      "command": "uv",
      "args": [
        "--directory", "/path/to/osf-mcp-server",
        "run", "osf-mcp-server"
      ],
      "env": {
        "OSF_TOKEN": "your_token_here"
      }
    }
  }
}

Available Tools

Search Tools

Tool Description
search_projects Search for OSF projects by title, tags, category
search_registrations Search for pre-registered studies
search_preprints Search for preprints from OSF and partner services

Project Tools

Tool Description
get_project Get detailed project information
create_project Create a new project (auth required)
update_project Update project metadata (auth required)

File Tools

Tool Description
list_files List files and folders in a project
download_file Download and cache a file locally
read_file Read content of a downloaded file

Other Tools

Tool Description
get_wiki List or get wiki page content
resolve_doi Resolve an OSF DOI to a resource

Examples

Search for Psychology Projects

Search for projects related to "cognitive bias":
- query: "cognitive bias"
- tags: ["psychology"]
- max_results: 20

Download a Research Paper

1. Search for preprints: query="machine learning"
2. List project files: project_id="abc12"
3. Download PDF: file_id="xyz789"
4. Read content: file_id="xyz789"

Create a New Project

Create project:
- title: "My Research Project"
- description: "A study on..."
- public: false
- tags: ["experiment", "2024"]

Development

Running Tests

# Run all tests
python -m pytest

# Run with coverage
python -m pytest --cov=osf_mcp_server

# Run specific test file
python -m pytest tests/test_search.py -v

Code Formatting

# Format with black
black src/

# Lint with ruff
ruff check src/

Architecture

osf-mcp-server/
├── src/osf_mcp_server/
│   ├── __init__.py          # Entry point
│   ├── server.py             # MCP server implementation
│   ├── config.py             # Configuration settings
│   ├── osf_client.py         # OSF API client
│   ├── tools/                # MCP tools
│   │   ├── search_*.py       # Search tools
│   │   ├── *_file.py         # File tools
│   │   └── ...
│   ├── resources/            # Resource management
│   │   └── osf_manager.py
│   └── prompts/              # Research prompts
│       └── research_prompts.py
└── tests/

OSF API Reference

This server uses the OSF API v2. Key endpoints:

  • /nodes/ - Projects and components
  • /registrations/ - Pre-registered studies
  • /preprints/ - Preprints
  • /files/ - File operations
  • /wikis/ - Wiki pages

License

MIT License

Contributing

Contributions welcome! Please:

  1. Fork the repository
  2. Create a feature branch
  3. Add tests for new functionality
  4. Submit a pull request

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

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.

Official
Featured
Python
graphlit-mcp-server

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.

Official
Featured
TypeScript
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured