hyperarc/hyperarc-mcp-server
If you are the rightful owner of hyperarc-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
HyperArc MCP Server allows agents to access HyperArc memories and assets.
HyperArc MCP Server
Give your favorite agent access to your HyperArc memories and assets.
Usage
Claude Desktop
{
"mcpServers": {
"hyperarc": {
"command": "npx",
"args": [
"-y",
"hyperarc-mcp-server"
],
"env": {
"HYPERARC_TOKEN": "hyperarc_your_token"
}
}
}
}
VS Code
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "hyperarc-token",
"description": "HyperArc Personal Access Token",
"password": true
}
],
"servers": {
"hyperarc-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"hyperarc-mcp-server"
],
"env": {
"HYPERARC_TOKEN": "${input:hyperarc-token}"
}
}
}
}
}
Standalone
- Clone the repo and run
run npm install. export HYPERARC_TOKEN=<token value>npm run build- Run the server via
npm start(or the MCP Inspector vianpm run inspect).
Development
npm run build- Point
npxto your local repo instead ofhyperarc-mcp-serverwith<path>/hyperarc-mcp-server/bin/cli.js. - Restart your client which should restart your server.