streamable-httpupdated 29d ago
This repo is a self-contained Claude Code plugin marketplace. It ships one plugin, personhood-humanize, which bundles the hosted Personhood MCP connector (remote streamable-HTTP server at https://api.givepersonhood.com/mcp) and a skill that fires on humanize intents and documents how to use it.
personhood 能做什么?
Personhood Claude Code plugin + marketplace
This repo is a self-contained Claude Code plugin marketplace. It ships one
plugin, personhood-humanize, which bundles the hosted Personhood MCP
connector (remote streamable-HTTP server at
https://api.givepersonhood.com/mcp) and a skill that fires on
humanize intents and documents how to use it.
Layout
.
├── .claude-plugin/
│ └── marketplace.json # marketplace catalog (lists the plugin)
├── plugins/
│ └── personhood-humanize/
│ ├── .claude-plugin/
│ │ └── plugin.json # plugin manifest (references .mcp.json)
│ ├── .mcp.json # bundled remote MCP connector
│ └── skills/
│ └── personhood-humanize/
│ └── SKILL.md # the humanize skill
└── README.md
Install
/plugin marketplace add Astral-Agent/personhood-mcp
/plugin install personhood-humanize@personhood
Or from a local checkout:
/plugin marketplace add .
/plugin install personhood-humanize@personhood
Authentication
The bundled connector reads your API key from the PERSONHOOD_API_KEY environment
variable (no secret is stored in the plugin):
export PERSONHOOD_API_KEY="<your-personhood-api-key>"
Create the key (it starts with the hmz_live_ prefix) in Personhood settings, then
restart the client. See the skill's SKILL.md for tool usage and manual setup for
other MCP clients (Cursor, etc.).
安装
把 personhood 添加到你的客户端。选择你正在使用的那个。
claude mcp add --transport http personhood https://api.givepersonhood.com/mcpcodex mcp add personhood --url https://api.givepersonhood.com/mcp{
"mcpServers": {
"personhood": {
"url": "https://api.givepersonhood.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"personhood": {
"type": "http",
"url": "https://api.givepersonhood.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"personhood": {
"url": "https://api.givepersonhood.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"personhood": {
"serverUrl": "https://api.givepersonhood.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
评分
39 / 100
不完整
- 文档22/25
- 维护19/25
- 可信度9/20
- 能力0/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 21 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 1.0.0最新 | 2026年8月10日 |