Setup Guides
Connect your MCP server to popular AI platforms. Grab an API key from the API Keys page and follow the instructions below.
C
Claude Desktop
Connect your MCP server to Claude Desktop for AI-powered Q&A and knowledge retrieval.
Config
{
"mcpServers": {
"pixel-texel": {
"command": "npx",
"args": ["-y", "@pixelandtexel/mcp-client"],
"env": {
"PT_API_KEY": "your-api-key-here"
}
}
}
}Replace your-api-key-here with an active API key from your keys page.
Cu
Cursor
Integrate with Cursor IDE to provide codebase context from your knowledge base.
Config
// .cursor/mcp.json
{
"mcpServers": {
"pixel-texel": {
"command": "npx",
"args": ["-y", "@pixelandtexel/mcp-client"],
"env": {
"PT_API_KEY": "your-api-key-here"
}
}
}
}Replace your-api-key-here with an active API key from your keys page.
W
Windsurf
Add MCP server access to Windsurf for enhanced code generation with your knowledge base.
Config
// ~/.windsurf/mcp.json
{
"mcpServers": {
"pixel-texel": {
"command": "npx",
"args": ["-y", "@pixelandtexel/mcp-client"],
"env": {
"PT_API_KEY": "your-api-key-here"
}
}
}
}Replace your-api-key-here with an active API key from your keys page.
VS
VS Code (Copilot)
Use with GitHub Copilot in VS Code to bring your knowledge base into your editor.
Config
// .vscode/mcp.json
{
"servers": {
"pixel-texel": {
"command": "npx",
"args": ["-y", "@pixelandtexel/mcp-client"],
"env": {
"PT_API_KEY": "your-api-key-here"
}
}
}
}Replace your-api-key-here with an active API key from your keys page.
GP
ChatGPT
Connect your MCP server to ChatGPT for knowledge-grounded conversations.
Config
# ChatGPT Desktop MCP Setup
# Settings > MCP Servers > Add Server
Server Name: Pixel & Texel
Command: npx -y @pixelandtexel/mcp-client
Environment Variables:
PT_API_KEY=your-api-key-hereReplace your-api-key-here with an active API key from your keys page.
Need help?
If you're having trouble connecting, reach out to our support team at support@pixelandtexel.com or check the full documentation.