Wanatux Labs MCP
Provides read-only tools for the Open Science Framework (OSF), allowing users to fetch project metadata, abstracts, and component lists from public OSF projects using project IDs or URLs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Wanatux Labs MCPList the components of OSF project bvy3q"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Wanatux Labs MCP
An MCP server for the Open Science Framework (OSF). Point any MCP client at it and ask about a research project by its OSF id.
No credentials. No accounts. It reads the public OSF API and returns structured JSON.
osf.io/bvy3q -> "From Automation to Agency: Observations from a
Local-First, Conversational Personal Systems Lab"
10 components, 8 tags, public since 2025-12-26Use the hosted server
Nothing to install — add this URL to any MCP client that supports remote servers:
https://labs.wanatux.net/mcpFor Claude Code:
claude mcp add --transport http wanatux-labs https://labs.wanatux.net/mcpThe hosted instance is rate limited to 60 requests/minute per IP.
Related MCP server: OSF MCP Server
Or run it yourself
pip install git+https://github.com/jayala-wt/wanatux-labs-mcp
wanatux-labs-mcp # serves on :8101, override with WANATUX_MCP_PORTTools
Tool | Returns |
| Title, category, description, tags, dates, public flag, URL |
| Just the abstract text, plus a |
| Child components with ids, titles, categories, URLs |
All three are read-only and idempotent. project_id is the short code in an OSF URL —
https://osf.io/bvy3q/ → bvy3q. A full OSF URL is accepted too, so pasting works.
Example
// osf_list_components("bvy3q")
{
"ok": true,
"project_id": "bvy3q",
"count": 10,
"components": [
{
"id": "uf5hn",
"title": "[Core] Defining the Epistemic Activation Problem: Interim Findings (v0.2.0)",
"category": "project",
"public": true,
"url": "https://osf.io/uf5hn/"
}
],
"truncated": false
}Errors are returned as data, never as exceptions:
{ "ok": false, "error": "No such OSF project (it may be private or the id may be wrong)" }Design
The server is meant to be reachable by anyone, so one rule governs every tool:
Public data in, public data out. No credentials, no local filesystem, no private data, no shell.
Practically that means:
No auth, deliberately. There is nothing to protect — every byte it returns is already public on osf.io.
Rate limited per IP, honoring
CF-Connecting-IPbehind a proxy.Responses carry no provenance. No hostnames, no file paths, no command lines. A public server that echoes its own internals is a public server that leaks.
Upstream responses cached for 120s, so a client in a loop doesn't turn into a denial-of-service against OSF.
Timeouts on every upstream call, and upstream failures become clean
ok: falseresults rather than tracebacks.
Related
paperclip searches papers across Arxiv, OSF and OpenAlex. This server does something different: it inspects an OSF project — its metadata, abstract, and component tree. If you want to find papers, use paperclip. If you have a project id and want to know what's in it, use this.
License
MIT — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceEnables searching Figshare research articles, datasets, papers, and posters through the MCP protocol.7MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server for interacting with the Open Science Framework (OSF), enabling search for projects, registrations, preprints, and file management.1MIT
- FlicenseNot gradedqualityDmaintenanceEnables searching and retrieving academic papers, authors, citations, and recommendations from Semantic Scholar via MCP.
- AlicenseAqualityAmaintenanceRead-only MCP tools for authenticated Open Science Framework projects, components, files, and contributors.61Apache 2.0
Related MCP Connectors
Auditable MCP server for PubMed, Europe PMC, ClinicalTrials.gov, and bioRxiv/medRxiv queries
MCP server for Altmetric APIs - track research attention across news, policy, social media, and more
IEEE Xplore MCP — BYOK wrapper over the IEEE Xplore Metadata Search API
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jayala-wt/wanatux-labs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server