godel-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@godel-mcpShow me the latest quote for AAPL"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
godel-mcp
A Model Context Protocol server that exposes Godel Terminal-style research as tools for AI clients — describe a security, pull financials, historical prices, analyst ratings, most-active, search, news, and live quotes.
The server is a tool surface over a pluggable data provider. It defines the
tools and the data contract (GodelDataProvider); how the data is fetched is
supplied by whatever provider you inject. It ships with a sample-data provider so
you can run it immediately, and can be embedded with your own.
you ──ask──▶ Claude ──MCP──▶ godel-mcp ──▶ GodelDataProvider (you supply)
│
formats dense, terminal-style panelsTools
Tool | Returns |
| Security overview (name, exchange, last close, CIK/LEI) |
| Delayed last-close snapshot |
| Annual financials + valuation multiples |
| Historical OHLCV bars |
| Analyst rating actions and price targets |
| Most active by dollar volume |
| Instruments / legal entities / news |
| Recent news & filings |
| Real-time quote (needs a live-capable provider) |
Related MCP server: FinClaw
Try it (sample data)
npm install
npm run demo # in-process MCP round-trip printing formatted panels
npm run dev # run the server over stdio with the sample providerEmbed it with your own data
Implement GodelDataProvider and pass it to buildServer / startStdio:
import { startStdio, type GodelDataProvider } from "godel-mcp";
const provider: GodelDataProvider = {
async describe(ticker) { /* ... */ },
async financials(ticker) { /* ... */ },
async liveQuote(ticker) { /* ... */ },
// ...the rest of the interface
};
await startStdio(provider); // serves all tools over stdio, backed by your dataThe data-access layer lives outside this repo by design — this package is just the MCP surface and formatting.
Layout
src/
index.ts entry — runs with the sample provider over stdio
server.ts buildServer(provider)
stdio-run.ts startStdio(provider)
tools.ts MCP tool definitions (call the provider, format results)
provider.ts GodelDataProvider interface + domain types
format.ts dense terminal-style panels
mock-provider.ts sample-data provider
examples/demo.ts in-process MCP demo
test/ formatting + MCP round-tripDevelopment
npm run typecheck
npm test # vitest: formatting + full MCP round-trip against the sample providerLicense
MIT — see LICENSE. Not affiliated with or endorsed by Godel Terminal / DL Software.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityAmaintenanceAn MCP server that exposes 16 free investment-research signals (insider trades, SEC filings, short data, and live quotes) to any MCP-compatible LLM.5299MIT
- Alicense-qualityDmaintenanceMCP server that provides AI agents with financial tools including real-time quotes, backtesting, technical analysis, and multi-exchange data via a simple CLI interface.1MIT
- Flicense-qualityCmaintenanceMCP server that exposes stock research tools (fundamentals, news, technicals, analyst ratings) to AI clients, enabling autonomous generation of structured investment briefs.
- Flicense-qualityDmaintenanceProduction-grade MCP server that enables AI assistants to access real-time financial market data with intelligent fallback mechanisms, supporting stock prices, comparisons, fundamentals, and market summaries via Yahoo Finance and CSV.
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
The financial MCP for AI agents - 90+ financial tables, SEC filings, signals, alt-data.
Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gwarren3210/godel-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server