Claude Code plugin for Graphor — document intelligence powered by AI. Upload, process, and query documents through natural language.
This plugin provides MCP server connectivity and domain expertise skills for working with Graphor, following the Agent Skills open standard.
/plugin marketplace add synapseops/graphor-skills
/plugin install graphor@graphor-skills
Set your API key when prompted (get one from the Graphor dashboard):
export GRAPHOR_API_KEY="grlm_your_api_key_here"Then just ask:
"Upload https://example.com/docs to Graphor and summarize it"
| Component | Description |
|---|---|
.mcp.json |
Auto-configures the graphor-mcp server for API access |
graphor-workflow |
Core skill: upload → process → ask workflow via MCP tools |
graphor-ts-sdk |
TypeScript SDK coding patterns and best practices |
graphor-py-sdk |
Python SDK coding patterns and best practices |
graphor-workflow (auto-activates when relevant)
The primary skill. Teaches the agent to upload documents (files, URLs, GitHub repos, YouTube videos), handle async processing, and query documents via ask, extraction, and chunk retrieval. Paired with the MCP server for direct API access.
graphor-ts-sdk (background knowledge)
Activates when writing TypeScript/JavaScript code with the graphor npm package. Covers client setup, all SDK methods, file upload patterns, error handling, and type safety.
graphor-py-sdk (background knowledge)
Activates when writing Python code with the graphor PyPI package. Covers sync and async clients, all SDK methods, error handling, and configuration.
/plugin marketplace add synapseops/graphor-skills
/plugin install graphor@graphor-skills
Copy the skills into your project's .claude/skills/:
cp -r plugin/skills/* your-project/.claude/skills/cp -r plugin/skills/* ~/.claude/skills/graphor-skills/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog
├── plugin/ # The Graphor plugin
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin metadata
│ ├── .mcp.json # MCP server config
│ └── skills/
│ ├── graphor-workflow/ # MCP workflow (hub + 6 rules)
│ ├── graphor-ts-sdk/ # TypeScript SDK patterns
│ └── graphor-py-sdk/ # Python SDK patterns
├── LICENSE
└── README.md
This plugin follows the Agent Skills open standard, making the skills portable across 27+ agent tools including Claude Code, Cursor, VS Code, GitHub Copilot, Gemini CLI, and more.
- Graphor Documentation
- TypeScript SDK —
npm install graphor - Python SDK —
pip install graphor - MCP Server —
npx -y graphor-mcp - Agent Skills Standard
MIT