get_project

Pack: osf · Endpoint: https://gateway.pipeworx.io/osf/mcp

OSF: fetch metadata for a single public research project (node) by its OSF id (e.g. “abc12”). Returns title, description, category, dates, tags, and public flag.

Parameters

NameTypeRequiredDescription
idstringyesOSF node id, e.g. “abc12”.

Example call

Arguments

{
  "id": "abc12"
}

curl

curl -X POST https://gateway.pipeworx.io/osf/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_project","arguments":{"id":"abc12"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('get_project', {
  "id": "abc12"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "osf": {
      "url": "https://gateway.pipeworx.io/osf/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 8, 2026