agentset-mcp-selfhosted
v1.4.0
Published
MCP server for Agentset, an open-source platform for Retrieval-Augmented Generation (RAG). Designed for developers who want to build intelligent, document-based applications quickly and efficiently.
Maintainers
Readme
Agentset MCP
MCP server for Agentset, an open-source platform for Retrieval-Augmented Generation (RAG). Designed for developers who want to build intelligent, document-based applications quickly and efficiently.
Installation
using npm:
AGENTSET_API_KEY=your-api-key npx @agentset/mcp --ns your-namespace-idusing yarn:
AGENTSET_API_KEY=your-api-key yarn dlx @agentset/mcp --ns your-namespace-idusing pnpm:
AGENTSET_API_KEY=your-api-key pnpm dlx @agentset/mcp --ns your-namespace-idAdding to Claude
{
"mcpServers": {
"agentset": {
"command": "npx",
"args": ["-y", "@agentset/mcp@latest"],
"env": {
"AGENTSET_API_KEY": "agentset_xxx",
"AGENTSET_NAMESPACE_ID": "ns_xxx"
}
}
}
}Tips
Passing namespace id as an environment variable
AGENTSET_API_KEY=your-api-key AGENTSET_NAMESPACE_ID=your-namespace-id npx @agentset/mcpPassing a custom tool description
AGENTSET_API_KEY=your-api-key npx @agentset/mcp --ns your-namespace-id -d "Your custom tool description"Passing a tenant id:
AGENTSET_API_KEY=your-api-key npx @agentset/mcp --ns your-namespace-id -t your-tenant-idSelf-hosted Agentset
If you're running a self-hosted Agentset deployment, you can use this package which includes support for custom base URLs and insecure TLS (for self-signed certificates).
Installation:
npx agentset-mcp-selfhosted@latestUsage with CLI flags:
AGENTSET_API_KEY=agentset_xxx npx agentset-mcp-selfhosted \
--ns ns_xxx \
--base-url https://agentset.your-company.com \
--insecure # only if using self-signed certsUsage with environment variables:
AGENTSET_API_KEY=agentset_xxx \
AGENTSET_NAMESPACE_ID=ns_xxx \
AGENTSET_BASE_URL=https://agentset.your-company.com \
AGENTSET_INSECURE_TLS=true \
npx agentset-mcp-selfhostedIn Claude Desktop configuration:
{
"mcpServers": {
"agentset": {
"command": "npx",
"args": ["-y", "agentset-mcp-selfhosted@latest"],
"env": {
"AGENTSET_API_KEY": "agentset_xxx",
"AGENTSET_NAMESPACE_ID": "ns_xxx",
"AGENTSET_BASE_URL": "https://agentset.your-company.com",
"AGENTSET_INSECURE_TLS": "true"
}
}
}
}⚠️ Security Note: --insecure/AGENTSET_INSECURE_TLS disables TLS certificate verification and should only be used with trusted endpoints (e.g., local dev with self-signed certs).
Package Info:
- npm: https://www.npmjs.com/package/agentset-mcp-selfhosted
- Adds support for custom Agentset base URLs
- Handles self-signed certificates for local/private deployments
API Reference
Visit the full documentation for more details.
