🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@raportagent/mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@raportagent/mcp - npm Package Compare versions

Comparing version
0.1.0
to
0.1.1
+7
-1
package.json
{
"name": "@raportagent/mcp",
"version": "0.1.0",
"version": "0.1.1",
"mcpName": "io.github.raportagent/raportagent-mcp",
"description": "Model Context Protocol server for RaportAgent — generate sourced market & compliance research from any MCP client (Claude Desktop, Claude Code, Cursor).",

@@ -20,2 +21,7 @@ "type": "module",

},
"repository": {
"type": "git",
"url": "https://github.com/raportagent/raportagent-mcp"
},
"homepage": "https://raportagent.com/mcp",
"dependencies": {

@@ -22,0 +28,0 @@ "@modelcontextprotocol/sdk": "^1.12.0",

+18
-12

@@ -25,12 +25,4 @@ # RaportAgent MCP server

1. Get an API key: RaportAgent → **My account → API keys** (an `ra_live_…` key).
2. Build:
2. Register it with your MCP client — no clone, no build, `npx` pulls the published package.
```bash
cd mcp-server
npm install
npm run build
```
3. Register it with your MCP client.
### Claude Desktop

@@ -45,4 +37,4 @@

"raportagent": {
"command": "node",
"args": ["/absolute/path/to/mcp-server/dist/index.js"],
"command": "npx",
"args": ["-y", "@raportagent/mcp"],
"env": {

@@ -59,5 +51,19 @@ "RAPORTAGENT_API_KEY": "ra_live_xxx"

```bash
claude mcp add raportagent -e RAPORTAGENT_API_KEY=ra_live_xxx -- node /absolute/path/to/mcp-server/dist/index.js
claude mcp add raportagent -e RAPORTAGENT_API_KEY=ra_live_xxx -- npx -y @raportagent/mcp
```
### Cursor
Same `command`/`args`/`env` shape as Claude Desktop above, under Cursor's MCP settings.
### Running from source (contributing / debugging only)
```bash
git clone <this repo>
cd mcp-server
npm install
npm run build
```
Then point `command`/`args` at `node` / `dist/index.js` with an absolute path instead of `npx`.
## Config

@@ -64,0 +70,0 @@