mcp-solid-pod
Click on "Deploy 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., "@mcp-solid-podlist my pod root container"
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.
mcp-solid-pod
MCP server for Solid Pods — list, read, search, and (opt-in) write — with CSS client-credentials auth for headless use (AIsuru MCP Gateway, Claude Desktop, etc.).
Portions adapted from @jeswr/solid-mcp (MIT).
Requirements
Node.js >= 24
A Solid server that supports client credentials (e.g. Community Solid Server)
Related MCP server: mcp-oauth
Tools
Tool | Args | Notes |
|
| List LDP container children |
|
| Read resource (Turtle for RDF) |
|
| Client-side search |
|
| PUT — disabled unless |
All URLs are confined to SOLID_MCP_POD_ROOT (SSRF / pod-scope guard).
Environment
Variable | Required | Description |
| yes | Pod/container URL ending in |
| for private pods | IdP base (e.g. |
| for private pods | CSS client credentials id |
| for private pods | CSS client credentials secret |
| no | Enables Type-Index search hints |
| no | Default |
Credentials are read from the environment only (gateway server_parameters) — never from the LLM.
Local run
npm install
npm run build
npm test
SOLID_MCP_POD_ROOT=http://localhost:3000/alice/ \
SOLID_MCP_OIDC_ISSUER=http://localhost:3000/ \
SOLID_MCP_CLIENT_ID=… \
SOLID_MCP_CLIENT_SECRET=… \
node build/cli.jsE2E against Community Solid Server
npm run build
npm run e2eThis starts npx @solid/community-server with e2e/seed.json, creates client credentials, and asserts list/read/search/write via the MCP stdio client.
With Docker instead:
docker compose -f e2e/docker-compose.yml up -d
SKIP_CSS_START=1 npm run e2e
docker compose -f e2e/docker-compose.yml downConfigure in the AIsuru MCP Gateway UI (admin)
Gateway admin → MCP Server Schemas → Nuovo schema. Fill the form with the values below (copy-paste).
Informazioni base
Field | Value |
ID Schema |
|
Nome |
|
Tipo Server |
|
Logo/Emoji |
|
Comando/URL di Esempio ( |
|
Priorità |
|
Schema disponibile | checked |
Local unpublished package (dev gateway host):
node /absolute/path/to/MCP Solid/build/cli.jsDescrizioni
🇮🇹 Descrizione Italiana
Server MCP per leggere e (opzionalmente) scrivere dati in un Solid Pod tramite LDP/RDF. Autenticazione headless con client credentials CSS / Solid-OIDC. Le credenziali non sono mai passate al LLM.🇺🇸 English Description
MCP Server to read and (optionally) write data in a Solid Pod via LDP/RDF. Headless auth with CSS / Solid-OIDC client credentials. Credentials are not given to the LLM.Prompt per Agenti AI
Prompt per Lista Tools
Questo server Solid Pod permette di elencare, leggere e cercare risorse LDP/RDF nel pod configurato. Questa funzione permette di leggere la lista di tool disponibili per questo MCP.Prompt per Esecuzione Tools
Usa solid_list per esplorare un container (URL che termina con /), solid_read per leggere una risorsa, solid_search per cercare per nome/URL/letterali RDF. solid_write e' disponibile solo se SOLID_MCP_READONLY=false. Tutti gli URL devono stare dentro SOLID_MCP_POD_ROOT.Parametri (JSON) — paste into “Parametri di Configurazione”
[
{
"name": "SOLID_MCP_POD_ROOT",
"type": "string",
"required": true,
"description": "URL assoluto del pod/container (deve terminare con /)",
"description_it": "URL assoluto del pod/container (deve terminare con /)",
"description_en": "Absolute pod/container URL (must end with /)",
"example": "https://pod.example/alice/"
},
{
"name": "SOLID_MCP_OIDC_ISSUER",
"type": "string",
"required": true,
"description": "Base URL dell'Identity Provider / CSS (es. https://pod.example/)",
"description_it": "Base URL dell'Identity Provider / CSS (es. https://pod.example/)",
"description_en": "Identity Provider / CSS base URL (e.g. https://pod.example/)",
"example": "https://pod.example/"
},
{
"name": "SOLID_MCP_CLIENT_ID",
"type": "string",
"required": true,
"description": "Client credentials ID (CSS)",
"description_it": "Client credentials ID (CSS)",
"description_en": "Client credentials ID (CSS)",
"example": "my-token_xxxxxxxx"
},
{
"name": "SOLID_MCP_CLIENT_SECRET",
"type": "string",
"required": true,
"description": "Client credentials secret (CSS)",
"description_it": "Client credentials secret (CSS)",
"description_en": "Client credentials secret (CSS)",
"example": "your-client-secret"
},
{
"name": "SOLID_MCP_WEBID",
"type": "string",
"required": false,
"description": "WebID del proprietario (abilita Type-Index in search)",
"description_it": "WebID del proprietario (abilita Type-Index in search)",
"description_en": "Owner WebID (enables Type-Index hints in search)",
"example": "https://pod.example/alice/profile/card#me"
},
{
"name": "SOLID_MCP_READONLY",
"type": "boolean",
"required": false,
"description": "Se true (default) disabilita solid_write",
"description_it": "Se true (default) disabilita solid_write",
"description_en": "If true (default) disables solid_write",
"example": "true",
"default": "true"
}
]Click Crea Schema.
When an agent activates this MCP
Fill instance parameters with real values (injected as env vars; never sent to the LLM):
{
"SOLID_MCP_POD_ROOT": "https://pod.example/alice/",
"SOLID_MCP_OIDC_ISSUER": "https://pod.example/",
"SOLID_MCP_CLIENT_ID": "my-token_xxxxxxxx",
"SOLID_MCP_CLIENT_SECRET": "the-secret-value",
"SOLID_MCP_WEBID": "https://pod.example/alice/profile/card#me",
"SOLID_MCP_READONLY": "true"
}SOLID_MCP_CLIENT_SECRET is encrypted at rest.
License
MIT — see LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
OAuth-protected, read-only-by-default MCP server for provenance-labeled QuillCaddie project memory.
MCP server for mandates, delegation, policy-gated execution, credential grants, and audit.
MCP server for verifying EUDI/Talao wallet data via OIDC4VP (pull) for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA self-hostable OAuth 2.0 server designed for the Model-Context-Protocol (MCP) that enables you to secure your MCP applications with a robust implementation you control.1,843 npm112ISC
- FlicenseNot gradedqualityDmaintenanceFastMCP server with Bearer token authentication mounted on FastAPI, including OAuth 2.1 endpoints for dynamic client registration and metadata discovery.-
- AlicenseNot gradedqualityBmaintenanceMCP server for the Solid protocol enabling AI models to read, write, search, and manage resources in Solid pods.1MIT
- FlicenseNot gradedqualityDmaintenanceA simple MCP server with OAuth 2.0 authentication for testing OAuth support in mcp-cli.-