Skip to main content
Glama
gwarren3210

godel-mcp

by gwarren3210

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 panels

Tools

Tool

Returns

godel_describe

Security overview (name, exchange, last close, CIK/LEI)

godel_quote

Delayed last-close snapshot

godel_financials

Annual financials + valuation multiples

godel_historical

Historical OHLCV bars

godel_ratings

Analyst rating actions and price targets

godel_most_active

Most active by dollar volume

godel_search

Instruments / legal entities / news

godel_news

Recent news & filings

godel_live_quote

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 provider

Embed 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 data

The 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-trip

Development

npm run typecheck
npm test           # vitest: formatting + full MCP round-trip against the sample provider

License

MIT — see LICENSE. Not affiliated with or endorsed by Godel Terminal / DL Software.

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    -
    quality
    A
    maintenance
    An MCP server that exposes 16 free investment-research signals (insider trades, SEC filings, short data, and live quotes) to any MCP-compatible LLM.
    52
    99
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    MCP server that provides AI agents with financial tools including real-time quotes, backtesting, technical analysis, and multi-exchange data via a simple CLI interface.
    1
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    Production-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.

View all related MCP servers

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.

View all MCP Connectors

Latest Blog Posts

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