@iant_/mcp-server
v0.1.2
Published
MCP server (stdio) that forwards tool calls to the iant gateway operator API.
Downloads
273
Readme
@iant_/mcp-server
MCP server (stdio) that forwards MCP tool calls to the iant gateway operator API.
Run via npx
npx @iant_/mcp-serverCursor config example
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"iant": {
"command": "npx",
"args": ["@iant_/mcp-server"],
"env": {
"GATEWAY_URL": "http://localhost:3000"
}
}
}
}Passing an API key (important)
Do not store the operator API key in env. This MCP server expects it per tool call as the operatorApiKey argument.
Example tool call arguments (as used by Cursor when invoking tools):
{
"operatorApiKey": "ApiKey_xxx",
"origin": "http://localhost:3010",
"requestedTools": ["core.browser_snapshot", "core.browser_click"]
}