- Understand what Sectors provides and why it matters for an AI agent.
- Create a Sectors account and obtain an API key.
- Add Sectors as an MCP server in Hermes.
- Verify the connection with a live query.
What is Sectors?
Sectors is a financial intelligence platform that gives AI agents access to real-world market data. Training data is frozen and imprecise for financial metrics, so an agent connected to Sectors calls the API in real time instead, the most comprehensive data source available for Indonesian equities.
| Category | What's Available |
|---|---|
| Company Financials | Revenue, net income, total assets, equity |
| Financial Ratios | ROA, ROE, P/E, NIM, cost-to-income |
| Market Data | Stock price, market cap, trading volume |
| News Intelligence | Continuously updated news and sentiment |
| Ownership | Effective and beneficial ownership structures |
| ESG Coverage | Sustainability data for 800+ SEA companies |
Getting Your API Key
You need a Sectors account and an API key before connecting to Hermes.
Go to sectors.app, click Sign Up, and complete the registration flow.
Find it from the main navigation or your dashboard, usually under account or developer settings.
Click API Key Management to see your active keys and create new ones.
Click Create API Key, name it hermes-course, and confirm. Copy the key immediately, it is only shown once.
Connecting to Hermes
Add MCP servers through the Desktop App's GUI, or edit ~/.hermes/config.yaml directly on terminal-only setups. Same config either way.
In the Desktop App, click Capabilities, then MCP, then New server.
Enter the following, replacing the API key placeholder with the key you copied from sectors.app:
"sectors": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://sectors-mcp.supertype.ai/sse",
"--header",
"Authorization:Bearer <Your API Key>"
]
}
tools.include / tools.exclude to keep only what you actually use.
Verifying the Connection
Two ways to confirm Sectors is working before moving to activities.
API Playground on sectors.app
Paste your API key into the playground on sectors.app and run a test call. A Status 200 response with real data means the key works.
Ask Hermes Directly
Send: "What is BBCA's current stock price?" A connected Sectors returns a live figure with a timestamp. A vague or dated answer means check the MCP connection.
Your First Live Queries
Try these once Sectors is connected, a first feel for what the agent can do.