Package

palantir-mcp

A public wrapper package that sets up access to a broader MCP runtime rather than implementing that runtime itself.

package palantir-mcp
first seen 2025-01
inspected version -
latest stable -
status
mixed

Relevant code

Most revealing source snippet

published: dist/index.js

src/spawn.ts

open source file ->
// generalized snippet; identifiers intentionally redacted
const child = spawn('npx', ['-y', 'runtime-package', ...args], {
	  stdio: 'inherit',
	  env: {
	    ...process.env,
	    PACKAGE_REGISTRY: registryUrl,
	    ACCESS_TOKEN: accessToken,
	  },
	})

Notes

Why it matters

This package is useful as a contrast case.

Unlike the Maker seam, where the boundary shows up inside a function-discovery path, palantir-mcp describes its own boundary clearly. Its public source is focused on preflight checks and process launch behavior rather than implementing the full MCP runtime directly.

That makes it a good example of a public wrapper around a broader runtime surface: the public package is useful on its own, while the full runtime remains outside the main package implementation.

Seams

Boundary notes

mixed

Public Wrapper Around Non-Public Runtime

Some packages are intentionally public as installers or access layers while the full runtime remains outside the visible package surface.

Inspect seam ->