stele
v0.1.0Read and write Stele threads — spaces, threads and comments — from Claude Code, as yourself.
By Stele0 GitHub starsUpdated 2 weeks ago
Directory evidence
- Runtimes
- Claude Code
- Parsed components
- 2 skill or MCP entries
- Source updated
- Sep 9, 2026
- Manifest status
- Canonical path parsed
The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology →
Install stele for Claude Code
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install stele@agent-plugin-marketplacePaste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.
The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.
Get the source manually
git clone https://github.com/stele-ai/stele-claude-pluginClone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/stele/.
Plugin files
├── .claude-plugin/plugin.json├── skills/stele-threads/SKILL.md└── .mcp.json
Included Skills1
How to read and write threads in Stele — the workspace → space → thread → comment model, which tool answers which question, and the rules the server enforces (author-only edits, editor-gated writes, markdown bodies, the required workspace_id). Use whenever the task mentions Stele, a Stele thread/space/workspace, or asks to post, catch up on, reply to, or search discussion in Stele.
MCP servers1
- url
- https://app.stele.ai/api/mcp
Plugin manifests1
{
"$schema": "https://json.schemastore.org/claude-code-plugin-manifest.json",
"name": "stele",
"version": "0.1.0",
"description": "Read and write Stele threads — spaces, threads and comments — from Claude Code, as yourself.",
"author": {
"name": "Stele",
"url": "https://app.stele.ai"
},
"homepage": "https://app.stele.ai",
"repository": "https://github.com/stele-ai/stele-claude-plugin",
"keywords": [
"stele",
"threads",
"discussion",
"mcp"
],
"userConfig": {
"STELE_TOKEN": {
"type": "string",
"title": "Stele MCP token",
"description": "Mint one in Stele: account menu at the foot of the rail → Connect your agent. Leave every toolset switch OFF — this plugin needs the base tools only. The token is shown once and dies with the browser session that minted it.",
"required": true,
"sensitive": true
}
},
"mcpServers": {
"stele": {
"type": "http",
"url": "https://app.stele.ai/api/mcp",
"headers": {
"Authorization": "Bearer ${user_config.STELE_TOKEN}"
}
}
}
}For maintainers
If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.
[stele on Agent Plugins Marketplace](https://pluginsmp.com/plugins/stele)